Inspiration
Script to Reverse a String
code written in python
Code:
str= input("Enter string to reverse: ") print(str[::-1])
Write a Script to Reverse a String challenge: Reverse, reverse! Find a way to take a string and turn it around backwards. Show off your backwards hack on the Day 2 Devpost.
Script to Reverse a String
code written in python
Code:
str= input("Enter string to reverse: ") print(str[::-1])
Log in or sign up for Devpost to join the conversation.