ukemi
0
Q:

input python 3

#Collecting The Input As A Variable:#
name = input('Please enter your name: ')
#Printing The Variable:#
print(name)
#Checking The Variable And Printing Accordingly:#
if name == 'Joe':
  print('Joe Mama')
26
answer = input("What is your name? ")
print(f"Your name is {answer}")
1
answer = input('What is your name?')
8
# use the function input()

# the parameter is something that would
# output on the screen before the input

name = input('What is your name?')
print('Hello ' + name)
3
name = input("Input message here")
1

New to Communities?

Join the community