Added week 5
This commit is contained in:
13
week5/ex1.py
Normal file
13
week5/ex1.py
Normal 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()
|
||||
Reference in New Issue
Block a user