Files
eidp-2023/Tutorium/tut11/README.md
2024-01-11 03:07:13 +01:00

875 B

marp, paginate, class, footer, header
marp paginate class footer header
true true invert Tutorium 11 - 15.01.2023 - Nils Pukropp - https://s.narl.io/s/tutorium-11

Tutorium 11 - EidP 2024

Dictionary, List-Comprehensions, Funktionen als Objekte


Dictionary

  • Eine Ansammlung aus Keys und dessen Werten
  • Ordnet jedem Key einen Wert zu
  • Ein Key muss immutable sein, also keine list, Objects, ...
  • Werte können mutable sein, also eigentlich alles.

Creating a Dictionary

dictionary = {
    <key>: <value>,
    <key>: <value>,
    ...
    <key>: <value>
}

Creating a Dictionary

dictionary = {
    <key>: <value>,
    <key>: <value>,
    ...
    <key>: <value>
}

Beispiel

courses = {
    "eidp": ["np163", "az34", "jf334"],
    "mathe": ["aw331", "pl67"],
    "sdp": []
}