Data Types
What is a "string" data type?
data made up of letters, numbers or any characters on the keyboard
What is "casting"?
ensure data is set to the correct data type
What is an integer data type?
whole number
num1=int(input("Enter a number:"))
What data type is this?
Integer
What is a "real" data type?
any number with a decimal point
cost1=float(input("Enter the price:"))
What data type is this?
real (decimal number)