def main(): get_name() def get_name(name='John'): print('Hello, ', name) main()