Python basis syntax Flashcards

1
Q

Met wat moet een Python identifier steeds starten?

A

letter of underscore

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

Is Python hoofdlettergevoelig?

A

Ja

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

Wat is de afspraak met betrekking tot de eerste letter?

A

Start steeds met kleine letter, klassenamen met hoofdletter

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

Hoe geef je commentaar aan?

A

Met een #

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

Hoe vraag je het type op van een variabele?

A

Met het type commando.

Bijvoorbeeld:

type(mijnNaam) = <class></class>

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

Welke datatype conversies zijn er beschikbaar?

A
  • int(x)
  • float(x)
  • complex(x)
  • stri(x)
  • hex(x)
  • oct(x)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Hoe ziet de string modulo operator eruit?

A

%

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

Hoe vraag je invoer op van een gebruiker?

A

Met input commando

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

Verklaar volgend statement:

print(“Om een taart te bakken heb je %d eieren en %s nodig.” % (4, “bloem”))

A
  • %d = placeholder voor decimaal
  • %s = placeholder voor string
  • % = string modulo operator
How well did you know this?
1
Not at all
2
3
4
5
Perfectly