Data Types
Casting
100

What is a "string" data type?

data made up of letters, numbers or any characters on the keyboard

100

What is "casting"?

ensure data is set to the correct data type

200

What is an integer data type?

whole number

200

num1=int(input("Enter a number:"))

What data type is this?

Integer

300

What is a "real" data type?

any number with a decimal point

300

cost1=float(input("Enter the price:"))

What data type is this?

real (decimal number)