Frequently Asked Python Program 21:How To Reverse Words in a String

แชร์
ฝัง
  • เผยแพร่เมื่อ 22 พ.ย. 2024

ความคิดเห็น • 28

  • @visionstatus2231
    @visionstatus2231 2 ปีที่แล้ว

    Str= input()
    L=[]
    For i in Str.split():
    L.append(str[i][::-1])
    Print("".join(L))

  • @LYVILLAN
    @LYVILLAN ปีที่แล้ว +1

    Very useful for my practical exam 👌

    • @sdetpavan
      @sdetpavan  11 หลายเดือนก่อน

      Glad to hear that

  • @russianrightnow
    @russianrightnow 4 ปีที่แล้ว +5

    Hello! Thank you so much for your help! I've been searching for this explanation

    • @sdetpavan
      @sdetpavan  4 ปีที่แล้ว +2

      Glad it was helpful!

  • @shreeyakulkarni3999
    @shreeyakulkarni3999 2 ปีที่แล้ว +1

    Sir can we use print formatting ?

  • @visionstatus2231
    @visionstatus2231 2 ปีที่แล้ว

    Str= input()
    A = str.split()
    Print ( reversed(A))

  • @kvelez
    @kvelez ปีที่แล้ว

    word = "hello world"
    word = word.split(" ")
    word = word[::-1]
    print(word)
    word = "hello world"
    word = word.split(" ")
    word = word[-1::-1]
    print(word)

  • @shivanibhardwaj3217
    @shivanibhardwaj3217 3 ปีที่แล้ว

    thanku i just got out from an interview yesterday over the same question

  • @srinivasareddychalla1094
    @srinivasareddychalla1094 3 ปีที่แล้ว +1

    Explain without using inbuilt functions

  • @Mnv_Sadiwala
    @Mnv_Sadiwala ปีที่แล้ว

    How to skip last two words in sentence?
    My input string is: Hi there. My name is Kalp. This is my lucky day. I like coding so much. This is it.
    Expected output is: Hi there. name My is Kalp. my is This lucky day. coding like I so much. This is it.

  • @p4mahiop711
    @p4mahiop711 3 ปีที่แล้ว

    sdet should be printed as ted ..?

  • @Sanjay-h6n-p1f
    @Sanjay-h6n-p1f 11 หลายเดือนก่อน +1

    Thanks sir

    • @sdetpavan
      @sdetpavan  11 หลายเดือนก่อน

      Welcome

  • @arpitmathur5727
    @arpitmathur5727 3 ปีที่แล้ว +1

    please explain without in built functions

  • @Roboticdock
    @Roboticdock 2 ปีที่แล้ว +2

    Very helpful!

  • @abdullahomar4204
    @abdullahomar4204 3 ปีที่แล้ว +2

    why you didn't use words.reverse() ?

    • @rithvikreddychantigari716
      @rithvikreddychantigari716 3 ปีที่แล้ว +2

      if we do that we will get " ," after each string which is not a part of our answer :-)

  • @sivapriya3276
    @sivapriya3276 3 ปีที่แล้ว

    thank you so much how to do in recursive function

  • @Satya_vichar_123
    @Satya_vichar_123 2 ปีที่แล้ว

    *What does [-1 : : -1] means please explain...*

    • @ajaypratapsingh7011
      @ajaypratapsingh7011 5 หลายเดือนก่อน

      it means [start:end:step] means starting from reverse position to full length as in end we have not specified so it will take whole string ,and taking step of 1 from reverse i.e last.

  • @Zenzuchi
    @Zenzuchi ปีที่แล้ว +1

    Thankssss

  • @andresfox3679
    @andresfox3679 4 ปีที่แล้ว +1

    Nice.

  • @kvnagendra5354
    @kvnagendra5354 5 ปีที่แล้ว +1

    Tq bro