Lesson 3.01 User Input
float
a floating-point number, which means it's a number with a decimal point (e.g., 1.15, -2.25)
app developer
a software programmer who creates, tests, and programs apps for computer and mobile devices
prompt
a statement or question used to communicate to the user the input value to enter
input
the values you ask a user to provide
integer
whole numbers (not fractions) that can be positive negative, or zero (e.g., 10, -30)
string
non-numeric data type that is a sequence of letters, numbers, or symbols
float()
the function that tells Python to treat the input as a float (a number WITH a decimal)
int()
the function that tells Python to treat the input as an integer (a number WITHOUT a decimal)
input()
the function used to get input from the user