Frequently Asked Python Program 8: How To Swap First & Last Elements of a List

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

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

  • @ramanaboinaharish9391
    @ramanaboinaharish9391 12 วันที่ผ่านมา

    n=[12,35,9,56,24]
    first=n[0]
    last=n[-1]
    n[0]=last
    n[-1]=first
    print(n)

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

    Nicely explained all five approaches.

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

    Well explained!! Thank you so much

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

      You are welcome!

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

    Wonderful explanation super

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

      Thank you so much

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

    Sor using the tuple method when all the values are assigned to get how are the values changed in my list

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

      in tuple function the values can't change...

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

    NIce explanation

  • @mouligodavarthi-yme1701
    @mouligodavarthi-yme1701 2 ปีที่แล้ว +1

    Thank you sir

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

    what is the meaning of tuple?

  • @saileinthirababu.s8146
    @saileinthirababu.s8146 4 ปีที่แล้ว

    Write a function Swap(num, n) in Python, which accepts a list num of numbers and n is the
    number of elements. The function will interchange every alternate value. E.g
    If the list num contain: [11, 21, 31, 41, 51, 61]
    Output, [21, 11, 41, 31, 61, 51]
    What is the answer for this anybody tell this

    • @malaydhami822
      @malaydhami822 3 ปีที่แล้ว +4

      list = [1, 2, 3, 4, 5, 6, 7]
      for i in range(len(list)-1):
      if i%2 == 0 :
      list[i],list[i+1]=list[i+1],list[i]
      print(list)

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

      @@malaydhami822 what if item in list are not equal is it work or not tell me