# Hack 2 - I accidentally personalized all the variable!!!
# Variable 1
luckynumber = 3
print(luckynumber)
#Variable 2
favfood = "pasta"
ingrediant = " flour"
print(favfood + (" is my favorite food and it is made of") + (ingrediant))
#Variable 3
favAnimals = ["dolphin", "dog", "cow", "parrot", "peacocks"]
print(favAnimals[1] + (" is the cutest animal of my favorite"))
#Variable 4
PhysicsisHard = True
print(str(PhysicsisHard)+ (", Physics is not easy"))
#Hack 2 with JSON
import json
favAnimals = ["dolphin", "dog", "cow", "parrot", "peacocks"]
print(type(favAnimals))
m = json.dumps(favAnimals)
print(m)
print(type(m))
3
pasta is my favorite food and it is made of flour
dog is the cutest animal of my favorite
True, Physics is not easy
<class 'list'>
["dolphin", "dog", "cow", "parrot", "peacocks"]
<class 'str'>