Primitive Data Types
#String
str = "Hello, World!"
#Boolean
bool1 = True
bool2 = False
#Integers
int1 = 23
int2 = 32
#Float
f1 = 1.023
Type Error, Type Checking, Type Conversion
num_char = len(input("What is your name? "))
print("Your name has " + str(num_char) + " characters")
Data Types Exercise
num = input("Type a two digit number: ")
num1 = int(num[0])
num2 = int(num[1])
numTotal = num1 + num2
print(numTotal)
Mathematical Operations
# Addition
num1 = 1
num1 += 2
# Subtraction
num2 = 2
num2 -= 1
# Division
num3 = 4
num4 = 4 / 2
# Multiplication
num5 = 6
num6 = 6 * 4
BMI Calculator
w = int(input("Type in your weight: "))
h = float(input("Type in your height: "))
BMI = int(w/int(h*h))
print("Your BMI score is: " + str(BMI))
Number Manipulation and F Strings
# Rounding up to tenth place
print(round(2.6666666666, 2))
score = 0
height = 1.8
isWinning = True
# f-string
print(f"Your score is {score}, your height is {height}, your winning is a {isWinning}")
Life in Weeks Exercises
age = int(input("What is your age: "))
years = 90 - age
days = years * 365
weeks = years * 52
months = years * 12
message = f"You have {days} days, {weeks} weeks, {months} months, {years} years"
print(message)-
Tip Calculator
print("Welcome to the ti[ calculator")
initialMoney = float(input("What was the total bill: $"))
tips = int(input("What percentage tip would you like to give? 10, 12, 0r 15: "))
splitPPL = int(input("How many people to split the bill: "))
tipPercent = tips/100
totalTip = initialMoney * tipPercent
totalBill = initialMoney + totalTip
total = totalBill / splitPPL
print(f"Each person should pay: ${round(total,2)}")