Answers for "how to get input through python"

3

how to take input in python

# Taking string input
a = input("Enter a string: ")
print("String is: ", a)

# Taking integer input
b = int(input("Enter an integer: "))
print("Integer is: ", b)

# Taking float input
c = float(input("Enter a float value: "))
print("Float value is: ", c)
Posted by: Guest on October-01-2020
0

how to take an input in python

an_input = input("Input something please")
Posted by: Guest on September-19-2020

Code answers related to "how to get input through python"

Python Answers by Framework

Browse Popular Code Answers by Language