Python menerima input pengguna
#Strings are sequence of characters
#Accepts a string as an input
name = input("Enter your name: ")
Nagaprasad T S
#Strings are sequence of characters
#Accepts a string as an input
name = input("Enter your name: ")
#Take Integer Value
nval=int(input("Enter a number : "))
#Take String Value
sval=input("Enter a string : ")
#Take float value
fval=float(input("Enter a floating-point number : "))
text = raw_input("prompt") # Python 2
text = input("prompt") # Python 3