{{tag>projects cloud club computing virtualization machines VMs AWS Azure GCP}} [[python_club|About the Club]]\\ ==== Python Club Topics - Exercise: Reverse name ==== ==== Exercise: Reverse name ==== - Output: Display the user's name in reverse order with a comma between names - What you learn from the example: - Get input from a user - Manipulate strings ==== Solution ==== # Prompt the user to input their first name and store it in the 'fname' variable fname = input('Input your First Name : ') # Prompt the user to input their last name and store it in the 'lname' variable lname = input('Input your Last Name : ') # Display a greeting message with the last name followed by the first name print('Hello ' + lname + ', ' + fname) \\ **Bonus round**: Try reversing the **__letters__** of your name.