Answers for "input() in python 3"

2

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
0

how to use inputs in python

# python 3.8

YourInout = input("your text input")

print(YourInput)
Posted by: Guest on December-07-2020

Python Answers by Framework

Browse Popular Code Answers by Language