0
Just simple question
How to make the print print reverted text and lowercase
4 Réponses
+ 1
Use the method lower() for lowercase text, and the slicing syntax [::-1] for reversing(reverting) text.
variable = "Your text"
print(variable.lower()[::-1])
0
Thx for answering it worked
0
green YT ,
i noticed that most of your questions are aimed to solve a problem quickly, without putting in much effort by yourself. That's not really learning, because the solution will also quickly be forgotten.
Afnan Irtesum Chowdhury ,
code samples to such questions should only be given if the asker can show a serious code try first.
0
I tried bro I was tried but didn't know and I forgot some attributes