Answers for "input pythhon"

3

input python

name = input("Enter your name: ")

#Printing the variable (name)
print("hello",name)
Posted by: Guest on September-30-2020
1

input python

# Input statements are used to ask questions to the user

text = input("Enter your name: ")

# printing the variabale 
print(text)
Posted by: Guest on December-14-2020

Python Answers by Framework

Browse Popular Code Answers by Language