Python Course
Previous Task
Next Task
0.0064 seconds
EN
|
RU
TT
ESC
Python Course
Problem
Difficulty
Status
Question
Show Code Editor
Clues from AI
Reverse a String
Write a function (def reverseString(s)) that takes a string and returns the reversed string.
Give me clue (but not answer) about the task
Assistant
ADVANCED
Send
main.py
Show Task Description
Verify Code
Run Code
Submit Task
Ask AI for clue
def reverseString(s): return s[::-1] print(reverseString("hello"))
Running...