Answers for "how to get input from html to python"

9

input in python

name = input("What is your name?n") # Asks the user 'What is your name?' and stores it in the 'name' variable

print("You said your name was " + name)

number = int(input("Please select a random number:n")) # Will get input as a number
# Will error if the value entered is not a number

# You can use any type of conversion (int(), bool(), float(), etc.) to modify your input
Posted by: Guest on October-21-2020
2

input in python

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

input in python

l=list(map(int,input().split()))
Posted by: Guest on June-27-2021

Code answers related to "how to get input from html to python"

Python Answers by Framework

Browse Popular Code Answers by Language