Added week 5
This commit is contained in:
12
week5/ex2.py
Normal file
12
week5/ex2.py
Normal file
@@ -0,0 +1,12 @@
|
||||
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()
|
||||
Reference in New Issue
Block a user