string = "string"
string
'string'
type(string)
str
number2 = 17
number2
17
number2 > number
True
Hello =True 
Bye= False 
print(Hello)
print(Bye)
True
False
# accessing lists 
list = ["chipotle", "starbucks", "chickfala", "CPK", True, False, 17, 18]
print(list[0])
print(len(list))
print(list[7])
chipotle
8
18
import json
strong = {}