This repository has been archived on 2025-07-12. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
shroom_of_doom/TESTING/for loop debugging.py
2025-02-26 14:40:25 -05:00

15 lines
234 B
Python

myList = ["A", "A", "A", "D"]
for i in myList:
if i == "A":
myList.append("A")
else:
myList[2] = "C"
print(myList)
for button in buttonList:
if button.name in ["Start", "Back"]:
button.remove()