Datatyper Flashcards
1
Q
Addition
A
+
2
Q
’ ’ + ’ ’ = ’ ’
A
Konkatenering
3
Q
type(’ ’)
A
Class sträng (str)
4
Q
Class Bool / boolean
A
type(True)
Dvs ger sanningsvärde true/false
5
Q
type(15)
A
Integer / heltal
6
Q
type(15.67)
A
class float / floating point number (flyttal, representerar decimaltal)
7
Q
type([])
A
class list (lista)
Kan innehålla vilka data-typer som helst
8
Q
x=[1, 2, 3]
print(x[1])
A
2
(Listans index börjar alltid från 0)