Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # # 2024 June 01
- # # WEBINAR: For Loops
- #
- # # We use loops to repeat actions
- # a WHILE loop... is an IF that repeats as long as the loop condition remains True
- # FOR LOOPS are used for repeating actions for every element in a container (list, dict, tuple, str)
- # Basic syntax of a for loop
- # for ___ in _someContainer__:
- # # LIST
- myList = ["Agent Scully", "Agent Mulder", "Walter Skinner", "CSM", "Mr. X"]
- for item in myList:
- print(item)
- # TUPLE
- myTuple = ("Gilligan", "Castaway002", "red", "crew")
- for item in myTuple:
- print(item)
- # STRING
- myString = "It was the best of times."
- for char in myString:
- print(char)
- # DICT
- # myDict = {
- # key: value,
- # key: value,
- # key: value,
- # }
- # myDict[key] # get the value for that key
- # myDict[key] = value # assigns value to that key
- bestOfXF = {
- "1x00": "Pilot",
- "2x10": "Red Museum",
- "2x14": "Die Hand Die Verletzt",
- "3x04": "Clyde Bruckman's Final Repose",
- "3x12": "War of the Coprophages",
- "3x20": "Jose Chung's From Outer Space",
- "4x05": "The Field Where I Died",
- "5x05": "The Post Modern Prometheus",
- "5x17": "All Souls"
- }
- for key in bestOfXF:
- # "Check out Episode ___ or '___'"
- print(f"Check out Episode {key} or '{bestOfXF[key]}'.")
- # Loop a known of number of times
- # RANGE
- # range(start=0, stop, step=1):
- # range(5) # range(0, 5)... [0, 1, 2, 3, 4]
- # for num in range(5):
- # print(num)
- for i in range(len(myList)):
- #print(i)
- print(f"{i} --> {myList[i]}")
- # or loop a known number of times with enumerate()
- # here you get 2 variables, the index and the value at that index
- for i, item in enumerate(myList):
- print(f"{i} ... {item}")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement