num1Int = 10
num2Int = 15
sum = num1Int+num2Int
print(sum)

float1 = 1.5
float2 = 1.7
quotient = 1.5 / 1.7
print(quotient)

message = "My first name is {0} and my last name is {1}"
print(message.format("Peyton", "Leigh"))
print(message.format("Aiden", "Leigh"))
25
0.8823529411764706
My first name is Peyton and my last name is Leigh
My first name is Aiden and my last name is Leigh
const colors = ["Reaver", "RGX", "BlastX", "Spectrum", "Origin"]
  Cell In[8], line 1
    const colors = ["Reaver", "RGX", "BlastX", "Spectrum", "Origin"]
          ^
SyntaxError: invalid syntax
variablelist = [7, 9, 2, 8]
num1int = 7
num2int = 8
sum = num2int + num1int
print(sum)

float1 = 5.6
float2 = 8.2
quotient = 5.6/8.2
print(quotient)

message = "My first name is {0} and my last name is {1}"
print(message.format("Peyton", "Leigh"))
print(message.format("Aiden", "Kim"))

name = input("Enter your name: ")
print("Hi! How are you,", name)
15
0.6829268292682927
My first name is Austin and my last name is Zhang
My first name is David and my last name is Lee
Hi! How are you, Austin