Basics Flashcards
1
Q
Eine Funktion um eine Ausgabe im terminal zu erzeugen
A
2
Q
Ausgabe im terminal mit variabeln
A
Print(f”{x}”)
3
Q
Syntax
A
Gibt vor welche Befehle u Ausdrücke gültig sind
4
Q
Gibt vor welche Bedeutung Befehle bzw Ausdrücke haben
A
Semantik
5
Q
Datentyp ausgeben
A
Print(type(x))
6
Q
Ganze zahl
A
Int
7
Q
Gleitkommazahl
A
Float
8
Q
Text
A
Str
9
Q
Wahrheitswert
A
Bool
10
Q
Kein typ
A
None
11
Q
Typumwandlung
A
Str() int()
12
Q
In tupel liste set wörterbuch ganze zahl hexadezimal string umwamdeln
A
Tupel(x) list() etc.
13
Q
Speichert eine Liste
A
List [1,2,3]
14
Q
Speichert eine unveränderbare liste
A
(1,2,3)
15
Q
Speichert Daten Schlüssel paare
A
Dictionary {“Name”:”kevin”,”nm”:1234}