Added week 5

This commit is contained in:
2026-03-30 09:33:48 +08:00
parent df970263d1
commit 9883796341
8 changed files with 89 additions and 0 deletions

13
week5/ex1.py Normal file
View File

@@ -0,0 +1,13 @@
def main():
print('==Exercise 1==')
sample_tuple = (100, 200, 300)
print(f"This is a tuple {sample_tuple}")
print('==End Of Ex1==')
return 0
if __name__ == '__main__':
main()