How to unpack a tuple from left to right?

Anthony Lee Meier :

Is there a clean/simple way to unpack a Python tuple on the right hand side from left to right?

For example for

j = 1,2,3,4,5,6,7

(1,2,3,4,5,6,7)

v,b,n = j[4:7] 

Can I modify the slice notation so that v = j[6], b=j[5], n=j[4] ?

I realise I can just order the left side to get the desired element but there might be instances where I would just want to unpack the tuple from left to right I think.

Aguy :

In case you want to keep the original indices (i.e. don't want to bother with changing 4 and 7 to 6 and 3) you can also use:

v, b, n = (j[4:7][::-1])

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How to plot data from right to left in MPAndroidChart?

From Dev

In horizontal linearlayout, how to add from left to right instead of right to left

From Dev

How to dismiss modal ViewController from right to left?

From Dev

How to toggle a div from right to left in jquery

From Dev

How to scale from left to right only

From Dev

How to unpack an object as it was a tuple in a for loop?

From Dev

How to change iCarousel autoScrollDirection from left to right To Right to left

From Dev

How to turn a two element direction tuple left or right (Snake game)?

From Dev

How to unpack a tuple returned from a function and assign it to the columns of the DataFrame?

From Dev

How to unroll a parameter pack from right to left

From Dev

How to animate TextView with Alpha from Left to Right?

From Dev

How to correctly unpack tuple and display it?

From Dev

How to unpack std::tuple from C++ template?

From Dev

How to find element in vector from right to left

From Dev

How to unpack optional items from a tuple?

From Dev

How to redirect stdout from right to left

From Dev

How to move to next ViewController on modal from left/right to right/left

From Dev

How to display image in div from right to left

From Dev

How to unpack and print a tuple

From Dev

How to traverse array from both left to right and from right to left?

From Dev

How to animate a background image from left to right and from right to left

From Dev

how to get the date from left to right in mysql?

From Dev

How to slide a view from right to left?

From Dev

How to reduce an array from Right to Left?

From Dev

How to unpack tuple with unknown size?

From Dev

How to unpack a tuple right from out parameter?

From Dev

How to animate position absolute from right to left and then left to right in jQuery?

From Dev

How to display an Ionic Menu from right to left instead of left to right?

From Dev

How to connect the dots with arrows from left to right?

Related Related

  1. 1

    How to plot data from right to left in MPAndroidChart?

  2. 2

    In horizontal linearlayout, how to add from left to right instead of right to left

  3. 3

    How to dismiss modal ViewController from right to left?

  4. 4

    How to toggle a div from right to left in jquery

  5. 5

    How to scale from left to right only

  6. 6

    How to unpack an object as it was a tuple in a for loop?

  7. 7

    How to change iCarousel autoScrollDirection from left to right To Right to left

  8. 8

    How to turn a two element direction tuple left or right (Snake game)?

  9. 9

    How to unpack a tuple returned from a function and assign it to the columns of the DataFrame?

  10. 10

    How to unroll a parameter pack from right to left

  11. 11

    How to animate TextView with Alpha from Left to Right?

  12. 12

    How to correctly unpack tuple and display it?

  13. 13

    How to unpack std::tuple from C++ template?

  14. 14

    How to find element in vector from right to left

  15. 15

    How to unpack optional items from a tuple?

  16. 16

    How to redirect stdout from right to left

  17. 17

    How to move to next ViewController on modal from left/right to right/left

  18. 18

    How to display image in div from right to left

  19. 19

    How to unpack and print a tuple

  20. 20

    How to traverse array from both left to right and from right to left?

  21. 21

    How to animate a background image from left to right and from right to left

  22. 22

    how to get the date from left to right in mysql?

  23. 23

    How to slide a view from right to left?

  24. 24

    How to reduce an array from Right to Left?

  25. 25

    How to unpack tuple with unknown size?

  26. 26

    How to unpack a tuple right from out parameter?

  27. 27

    How to animate position absolute from right to left and then left to right in jQuery?

  28. 28

    How to display an Ionic Menu from right to left instead of left to right?

  29. 29

    How to connect the dots with arrows from left to right?

HotTag

Archive