Added week 5
This commit is contained in:
9
week5/ex3.py
Normal file
9
week5/ex3.py
Normal file
@@ -0,0 +1,9 @@
|
||||
def main():
|
||||
print('==Exercise 3==')
|
||||
t = (1,2,3,4,5,6,7,8,9,10)
|
||||
print(f'tuple:{t}\n3rd number of tuple:{t[2]}')
|
||||
print('==End Of Ex3==')
|
||||
return 0
|
||||
|
||||
if __name__ == '__main__':
|
||||
main()
|
||||
Reference in New Issue
Block a user