How do I put spaces between two lines I just added in python, to make it so that the second columns align, regardless of how many letters are in the responses?
Code:
print(f'{email_address}')
print(f'{phone_number}')
print()
print(f'Hair: {hair.capitalize()} Eye color: {eye_color.capitalize()}')
print(f'Month: {month.capitalize()} Training: {training.capitalize()}')
print('--------------------------------------------------')
I want the hair and the eye_color to be in the same line, the month and the training part to be in the same line as well. I also want them to align regardless of the number of words the user type in. I hope I make sense
This is how I want the last two lines to look like:
Hair: Black Eye color: Brown
Month: April Training: Yes