13 lines
211 B
Python
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() |