# variable 1
numStudents = 26
print(numStudents)
# variable 2
car = "Tesla"
print(car)
# variable 3
groupMates = ["Nikki, Ankit, Monkia, Varun"]
print(groupMates)
# variable 4
dogbeatcats = True
print(dogbeatcats)
26
Tesla
['Nikki, Ankit, Monkia, Varun']
True
# variable 1
numofWills = 15
print(numofWills)
# variable 2
candy = "oreo"
print(candy)
# variable 3
bestoreos = ["kaledios, oreos, sandwhich cremes, creme betweens"]
import json
list = [bestoreos]
print(type(list))
bestoreos = json.dumps(list)
print(bestoreos)
print(type(bestoreos))
# variable 4
kalediosbetterthanoreos = True
print(kalediosbetterthanoreos)
15
oreo
<class 'list'>
[["kaledios, oreos, sandwhich cremes, creme betweens"]]
<class 'str'>
True