└── README.md /README.md: -------------------------------------------------------------------------------- 1 | # great_user 2 | # Function to greet the user 3 | def greet_user(name): 4 | print(f"Hello, {name}! Welcome to the Python world.") 5 | 6 | # Ask the user for their name 7 | user_name = input("Please enter your name: ") 8 | 9 | # Greet the user 10 | greet_user(user_name) 11 | --------------------------------------------------------------------------------