Basics Flashcards

1
Q

Eine Funktion um eine Ausgabe im terminal zu erzeugen

A

Print

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Ausgabe im terminal mit variabeln

A

Print(f”{x}”)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Syntax

A

Gibt vor welche Befehle u Ausdrücke gültig sind

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Gibt vor welche Bedeutung Befehle bzw Ausdrücke haben

A

Semantik

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Datentyp ausgeben

A

Print(type(x))

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Ganze zahl

A

Int

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Gleitkommazahl

A

Float

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Text

A

Str

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Wahrheitswert

A

Bool

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Kein typ

A

None

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Typumwandlung

A

Str() int()

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

In tupel liste set wörterbuch ganze zahl hexadezimal string umwamdeln

A

Tupel(x) list() etc.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Speichert eine Liste

A

List [1,2,3]

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Speichert eine unveränderbare liste

A

(1,2,3)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Speichert Daten Schlüssel paare

A

Dictionary {“Name”:”kevin”,”nm”:1234}

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Potenz

A

**

17
Q

Ganz zahl division

A

//

18
Q

Rest der division

A

10%2

19
Q

Zufalls zahl

A

From random Import Ranking
random.randint(a,b)

20
Q

Vergleichsoperatoren: gleich, ungleich,das selbe , nicht das selbe

A

== != is is not

21
Q

Entweder entweder oder

A

If Bedingung:
Aktion
Elif:
Aktion
Else:
Aktion

22
Q

Boolesvhe Operatoren

A

Not x ist true wenn x==false
X and y ist true wenn x==true und y== true
X or y ist true wenn x==true oder y== true

23
Q

Schleife solange Bedingung wahr

A

X=10
White x>0:
X-=1
Print(feiert von x: {x}”)

24
Q

Schleife mit fest vorgegeben interationen

A

For Element in elements:
Aktion
pass

25
Q

Die range Funktion

A

Range(start, stop, step)

26
Q

Aufzählungen funktion

A

For Index, fruit in enumerate(fruits):

27
Q

Funktion abbrechen

A

If anweisung:
Break

28
Q

Springt zum schleifenkopf

A

If num==5:
Continue