feat: rename

This commit is contained in:
2025-09-03 23:37:32 +08:00
parent 5033e31143
commit 3e79180e2c
2 changed files with 0 additions and 0 deletions

11
for_loop_test.py Normal file
View File

@@ -0,0 +1,11 @@
#!/usr/bin/env python3
if __name__ == "__main__":
strings = ["str1", "str2", "str3"]
print("length:", len(strings))
strings.append("str4")
strings.append("str5")
print("length:", len(strings))
strings.pop()
for s in strings:
print(s)