Python || Q2. Write a Program To REVERSE content of the given String by using reversed function

preview_player
Показать описание
Java tutorial by durga sir

Java 9 by durga sir

Java 1.8 Version New Features by Durga sir

Adv Java JDBC Tutorial by Durga sir

OCJA 1.8 Java SE 8 Programmer - I (1Z0 - 808 ) By Durga sir

Core Java by NagoorBabu sir

Advenced Java by Nagoorbabu sir

CoreJava by Ratan

Advanced Java jdbc by Ratan

Advjava tutorials - JSP by Ratan

Adv java servlets tutorial by ratan

Servlet and JSP Tutorial by anji reddy

Advanced Java Jdbc by Anjireddy

Hibernate byAnjireddy

Struts by Anjireddy

Spring by Mr.AnjiReddy

ADV JAVA by Naveen

Spring by Mr.Naveen

Hibernate by Mr. Naveen

Struts by Mr.Naveen
Рекомендации по теме
Комментарии
Автор

Good one to see as Durga Sir started this Python coding tutorial.

Is there any timings for this course online so that I can join?

harik
Автор

Sir we can also do by using end=""

s=input("Enter some string:")
r=reversed(s)
for i in r:
print(i, end='')

showstupid
Автор

Given list of numbers and strings, perform reverse for strings and square for numbers using list comprehension
Input = [12, 'python', 9]
output = [144, 'nohtyp', 81]
sir please solve this problem

AKamalaKumari-svfc
Автор

Reversed sentence
Qué:-"Abc pqr xyz"
And:zyx rqp cba"

bhushanjain
Автор

s="durga"
print(*reversed(s))

garimadeswal
Автор

why are we not doing this way ?

name = 'vijay'
print(reverse(name))

vijaypalmanit
Автор

s = "Durga"
r = s[ : : -1]
print(r)
is more pythonic to reverse a string. :-)

drsmahesan