14. Lektion: Variablen vielfalt.extend(): Difference between revisions

From Attraktor Wiki
Jump to navigation Jump to search
No edit summary
Line 23: Line 23:
We can add a * character in front of variables to signify that it should contain everything else that hasn’t been unpacked.
We can add a * character in front of variables to signify that it should contain everything else that hasn’t been unpacked.
</pre>
</pre>
https://medium.com/@sarperismetmakas/10-python-shortcuts-6f5c62c53bb1
** Inhalte tauschen
** Inhalte tauschen
*** x , y = y, x
*** x , y = y, x

Revision as of 10:31, 27 August 2023

Erste Zeile

  • Namen
    • Bedeutung des _
    • __name__ == __main__
  • Mehrfach Zuweisung
    • y, x = 1, 2
    • x, y, z = [1, 2, 3]
    • 2) Tuple Unpacking (with & without *)
person = ['tom', 5, 'male']

name, age, gender = person
# name='tom', age=5, gender='male'

We can use tuple unpacking to assign multiple variables in one line.

letters = ['A', 'B', 'C', 'D', 'E', 'F', 'G']

first, second, *others = letters
# first='A', second='B'
# letters = ['C', 'D', 'E', 'F', 'G']

We can add a * character in front of variables to signify that it should contain everything else that hasn’t been unpacked.

https://medium.com/@sarperismetmakas/10-python-shortcuts-6f5c62c53bb1

Sortieren
Mitgliedschaft
  • in
Übungen:

https://medium.com/@hannanmentor/pythons-best-code-snippets-c34ed1f07239