#Python hack to make variables and change their value
# Step 1: Initialize the variable
var = 10
print("Step 1: Type of var =", type(var))
# Step 2: Reassign a new type
var = "Hello, World!"
print("Step 2: Type of var =", type(var))
# Step 3: Reassign to another type
var = 3.14
print("Step 3: Type of var =", type(var))
# Step 4: Reassign to a boolean
var = True
print("Step 4: Type of var =", type(var))
Step 1: Type of var = <class 'int'>
Step 2: Type of var = <class 'str'>
Step 3: Type of var = <class 'float'>
Step 4: Type of var = <class 'bool'>