Lecture

Coding Quiz - Reverse String

In this coding quiz, you will write a function that reverses a given string.

Create a program that takes a string input from the user and outputs the string in reverse order.

For instance, if the input string is "hello", the output should be "olleh".


Write the Code
def solution(s): # Write your code here return



Constraints

  • The length of the input string must be between 1 and 100.

  • The string will only contain lowercase alphabets.




Input and Output Examples

  • Input: "hello"

  • Output: "olleh"


  • Input: "world"

  • Output: "dlrow"

Lecture

AI Tutor

Design

Upload

Notes

Favorites

Help