82.7k views
2 votes
Write python code that prompts the user to enter his or her height and assigns the user's input to a variable named height

User Diedre
by
8.8k points

1 Answer

1 vote

print("Enter the height in meters:")
height = input()
print("You are"+ height)


User Sreenidhi Sreesha
by
7.4k points