Answers for "simple code with input python"

3

input python

name = input("Enter your name: ")

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

input in python

#Input in python
name = input('What is your name')
print('Hello'+ name + ' !')
Posted by: Guest on October-04-2020

Code answers related to "simple code with input python"

Python Answers by Framework

Browse Popular Code Answers by Language