Answers for "input python nedir"

93

python input

#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')
Posted by: Guest on August-09-2020
1

input in python

age = input("Your age: ")
print("Your age is: " + age)

# defines input as a string and prints it out
Posted by: Guest on October-05-2020

Python Answers by Framework

Browse Popular Code Answers by Language