Initial Commit

This commit is contained in:
Cutieguwu
2025-02-26 14:40:25 -05:00
commit d9dc0e390c
129 changed files with 4106 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
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()