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

12 lines
209 B
Python

def main():
print('==Exercise 2==')
tuple_output = (1,2.0,'c',[4],{"value":5})
print(f"tuple: {tuple_output}")
print('==End Of Ex2==')
return 0
if __name__ == '__main__':
main()