About 2,690,000 results
Open links in new tab
  1. How to Reverse a String in Python - W3Schools

    There is no built-in function to reverse a String in Python. The fastest (and easiest?) way is to use a slice that steps backwards, -1. Reverse the string "Hello World": We have a string, "Hello …

  2. How to Print Name [String] in Reverse order in Python - Srinimf

    Nov 20, 2021 · Here’s a Python program that prints the name (entered from the terminal) in reverse order. With the help of a for loop, range, length, and string operators (index and …

  3. Python: Print first and last name in reverse order with a ... - w3resource

    Apr 16, 2025 · Write a Python program that accepts the user's first and last name and prints them in reverse order with a space between them. Python has two functions designed for accepting …

  4. How to reverse user input in Python - Stack Overflow

    Mar 17, 2015 · >>> rast = "" >>> for i in range(last): rast += ast[last-1-i] >>> print(rast) nodnoL >>> To summarize. ast = input('Tell me a word of your choice: ') last = len(ast) rast = "" for i in …

  5. How do i print the reverse of name in python without using …

    Sep 17, 2018 · You can try the following: split the input, reverse the tokens using the [::-1] slice, and join them back together. input = 'john doe garry' rev = ' '.join(input.split()[::-1]) print(rev) # …

  6. Reverse Strings in Python: reversed(), Slicing, and More

    In this step-by-step tutorial, you'll learn how to reverse strings in Python by using available tools such as reversed() and slicing operations. You'll also learn about a few useful ways to build …

  7. python - How to reverse first and last name? - Stack Overflow

    May 16, 2022 · names = input("What is your name: ").split(" ") print(', '.join([names[1].capitalize(), names[0].capitalize()]))

  8. Write a Python program which accepts the user's first and last name

    May 5, 2024 · Write a Python program which accepts the user’s first and last name and print them in reverse order. I have used python 3.7 compiler for debugging purpose. firstname = …

  9. Write a Program to Print Your Name in Reverse Order in Python

    Code ============================= name = input ("Enter your name : ") print ("Your name in reverse order is ", name [::-1]) Keywords ============================= …

  10. Reverse Name in Python - CodePal

    This Python code snippet demonstrates a function that takes a full name as input and returns the reversed name in the format 'Last Name First Name'. Learn how to reverse the order of a full …

Refresh