Answers for "input phyton"

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 python

name = input("What is your name: ")

print(name)

if name == "Jeff":
  print("My name Jeff")
Posted by: Guest on September-24-2021
1

input in python

#input or question, is used to ask question

ans = input('Who invented Microsoft?')

#An if statement

if(ans == 'Bill Gates'):
  print('You got the answer')
Posted by: Guest on November-07-2020

Python Answers by Framework

Browse Popular Code Answers by Language