100% satisfaction guarantee Immediately available after payment Both online and in PDF No strings attached
logo-home
Samenvatting commando's basisprogrammeren (werkcolleges +boek) $5.35   Add to cart

Summary

Samenvatting commando's basisprogrammeren (werkcolleges +boek)

1 review
 19 views  1 purchase
  • Course
  • Institution
  • Book

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.

Preview 3 out of 21  pages

  • No
  • Alles wat gekend moest zijn voor het examen: h3 - h13
  • January 25, 2024
  • 21
  • 2023/2024
  • Summary

1  review

review-writer-avatar

By: alecdobbelaere • 5 months ago

reply-writer-avatar

By: verkoper12 • 5 months ago

Translated by Google

Hello, Can you explain a bit more about this bad review? Then I can see if adjustments need to be made.

avatar-seller
Commando’s basis programmeren Python3
Commando’s basis programmeren Python3................................................1
Variabelen.................................................................................................2
Bewerkingen.............................................................................................3
Printmethodes...........................................................................................4
Formatmethode....................................................................................4

%-methode...........................................................................................4

Toepassing: Spaties en enters..............................................................4

Conditionele programmeertechnieken......................................................5
If … elif … else …..................................................................................5

For-lus...................................................................................................5

While lus:..............................................................................................6

Woordenboeken........................................................................................6
Lijsten.....................................................................................................10
Matrix......................................................................................................10
Functies...................................................................................................11
Modules...................................................................................................12
Module importeren:............................................................................12

Functies of variabelen importeren:.....................................................12

Module: Math......................................................................................13

Module: Random.................................................................................14

Module: Statistics...............................................................................15

Module: numpy...................................................................................16

Module: copy......................................................................................17

Packages.................................................................................................18
Package: matplotlib............................................................................18

Herhalingsoefening oplossing.................................................................20




1

,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




Slides H3: variabelen: 25-28

2

, Immutabel vs mutabel: 41

Immutabele gegevenstypes: integer, real, tupel, Boolean

Mutabele gegeventypes: list, set, dictionnary

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

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

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

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.

Can Stuvia be trusted?

4.6 stars on Google & Trustpilot (+1000 reviews)

71498 documents were sold in the last 30 days

Founded in 2010, the go-to place to buy study notes for 14 years now

Start selling
$5.35  1x  sold
  • (1)
  Add to cart