Replit Exercise
Replit Exercise
print("Hello World!")
print("What is your name?")
#Data Types
#"String" - alwasy with double quotes
print("Hello")
#Integer - whole numbers, without " " python will treat numbers as numbers
and not string
print(123 + 123)
print(123_456_789)
# Rounding
print(round(8/3, 2)) #round to 2 decimal places