Added week 6
This commit is contained in:
11
week6/ex1.py
Normal file
11
week6/ex1.py
Normal file
@@ -0,0 +1,11 @@
|
||||
def main():
|
||||
print('==Exercise 1==')
|
||||
|
||||
name = input("Please input your name > ")
|
||||
print("Welcome on board 007." if name=="Bond" else f"Good morning {name}.")
|
||||
|
||||
print('==End Of Ex1==')
|
||||
return 0
|
||||
|
||||
if __name__ == '__main__':
|
||||
main()
|
||||
Reference in New Issue
Block a user