Dit document bevat alle commando's die je moet kennen voor het examen van basisprogrammeren. Ook worden enkele modules zoals: math, statistics en random toegelicht.
,Variabelen
Commando Wat doet het?
x=y=… x en y gelijk stellen aan …. OPM:
als je later x alleen verandert,
verandert y niet mee!
x,y = a, b x krijgt waarde a toegevegen, y
waarde b
Omzetten string naar een geheel
getal
if getal.isnumeric(): Controleert of een getal natuurlijk
is.*
getal=round(getal,2) Rond een getal af tot op 2 cijfers na
de komma.
Belangrijk:
In Python verwijst een variabele naar een object
o Object = gegevens-entiteit
o Variable (tijdelijk) gekoppeld aan een object via object ID
Static Typing VS (Dynamic Typing)
o Koppeling ‘geeft’ waarde en type aan variable
o Object != variable
Dynamic Typing:
- Koppeling is tijdelijk
- Variabele kan gekoppeld worden aan een ander object.
- -> Python
Static Typing:
- Koppeling is vast aan type en waarde
- Variabele kan niet veranderen
Commando Wat doet het?
getal = eval(getalStr) Omzetten string naar het best
passende getal
getal= float(getalStr) Omzetten string naar een reëel
getal
getal=int(getalStr) Omzetten string naar een geheel
getal
if getal.isnumeric(): Controleert of een getal natuurlijk
is.*
getal=round(getal,2) Rond een getal af tot op 2 cijfers na
de komma.
getal = 7E4 wetenschappelijk notatie,
automatisch geregistreerd als
float. 7*10^4
0b011010 prefix 0b geeft aan dat het een
binair getal is**
0o1475 prefix 0o octaal getal**
0xAF45E2 prefix 0x hexadecimaal
getal**
c1String = bin(c) c omzetten naar binaire vorm (in
type string)
c2String = oct(c) c omzetten naar octale voorstelling
c3String = hex(c) hexadecimale voorstelling
*In werkelijkheid controleert dit commando of een string enkel uit getallen
bestaat of niet. Wanneer dit zo is, kan die string dus omgezet worden naar
aan natuurlijk getal! (Want er zijn geen mintekens of komma’s.)
**De invoer gebeurt in het betreffende getalstelsel, maar intern worden
deze getallen als gehele getallen opgeslagen. Als je hun type opvraagt,
staat er: “int”
Bewerkingen
Commando Wat doet het?
a + b, a – b optelling, aftrekking
a*b, a/b vermenigvuldiging, deling
a**b a tot de macht b
a//b gehele deling (3//2 = 1)
a%b restdeling (5%3 = 2)
a += x (of -=, *=, /=, **=, //=, %/) gecombineerd toewijzen
==, !=, >, <, >=, <= Boleaanse vergelijkingen: True of
False
and, or, or not, not Logische bewerkingen (te
3
The benefits of buying summaries with Stuvia:
Guaranteed quality through customer reviews
Stuvia customers have reviewed more than 700,000 summaries. This how you know that you are buying the best documents.
Quick and easy check-out
You can quickly pay through credit card or Stuvia-credit for the summaries. There is no membership needed.
Focus on what matters
Your fellow students write the study notes themselves, which is why the documents are always reliable and up-to-date. This ensures you quickly get to the core!
Frequently asked questions
What do I get when I buy this document?
You get a PDF, available immediately after your purchase. The purchased document is accessible anytime, anywhere and indefinitely through your profile.
Satisfaction guarantee: how does it work?
Our satisfaction guarantee ensures that you always find a study document that suits you well. You fill out a form, and our customer service team takes care of the rest.
Who am I buying these notes from?
Stuvia is a marketplace, so you are not buying this document from us, but from seller verkoper12. Stuvia facilitates payment to the seller.
Will I be stuck with a subscription?
No, you only buy these notes for $5.35. You're not tied to anything after your purchase.