Creating My Own Modules and Packages (Post-002)
The Data Engineering Channel -- Unlocking Python: Functions & Modules Explained ( here ) Notes: (1) Basic structure of a function and of a function call: def greet_the_user(message_string): #^^^^-- func name and params name =input('What is your name? __') prrint(f'Hello {name}, here is a special message for you:') print name =input('What is your name? __') print(f'He...