Files
ICSP1-Works/week5/ex1.py
2026-03-30 09:33:48 +08:00

13 lines
211 B
Python

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()