''' print("m 1\\n") print("m 2") ''' # def means about to "define" function # This function takes a message and prints # it with a '1' at the end def MyPrint2(message): print(message,1) MyPrint("UCSB") MyPrint("IV") # "list" - data structure to hold items myList = [0,1,3,4] # "for" -> going loop mySum = 0 for myItem in myList: print("myItem", myItem); mySum = mySum + myItem; print("Sum of items", mySum)