#Strings "spider man"
a = "bat" b = "man"
a+b
b+a
#Lists [1,2,3]
c = [1,2,3]
c
list_superheros = ["Spider Man", "Batman", "Thor", "Iron Man"]
list_superheros
list_superheros.append("Wonder Woman")
list_superheros[1] = "ManBat"
#For Loops for item in [5,3,8]: print(item)
listserve = [10,20,30] index = 0 for item in listserve: listserve[index]= item/10 index = index + 1 print(listserve)