Member-only story
Center Your Text: A Step-by-Step Guide to Python Input Alignment
Introduction
In this tutorial, we’ll walk you through a Python programming problem that involves accepting two input values, aligning the first value in a centered manner, and surrounding it with a custom character. By the end of this post, you’ll have a better understanding of how to work with user inputs, string formatting, and alignment in Python.
Step 1: Accepting User Inputs
First, we need to accept two input values from the user. The input()
function in Python allows us to do this. The first input can be either a number or a string, while the second input must be an integer.
value = input("Enter a number or a string: ")
width = int(input("Enter an integer value for alignment: "))
Step 2: Choosing a Custom Character
Next, we need to choose a custom character to surround the first value. You can use any character you prefer, except for the default space character. For this example, we’ll use the asterisk (*) character.
custom_char = "*"
Step 3: Aligning the First Value
Now, we’ll align the first value in a centered manner using the second input value (width). Python provides a built-in string method called str.center()
that can be used for this purpose. The str.center()
method takes two arguments: the width of the final string and an optional fill character.
aligned_value = value.center(width, custom_char)
Step 4: Displaying the Result
Finally, we’ll display the aligned value using the print()
function.
print(aligned_value)
Putting It All Together
Here’s the complete code for the program:
# Accept user inputs
value = input("Enter a number or a string: ")
width = int(input("Enter an integer value for alignment: "))
# Choose a custom character
custom_char = "*"
# Align the first value
aligned_value = value.center(width…