100% satisfaction guarantee Immediately available after payment Both online and in PDF No strings attached
logo-home
Beknopte wet. programmeren samenvatting (PYTHON) $5.87
Add to cart

Summary

Beknopte wet. programmeren samenvatting (PYTHON)

 11 views  0 purchase
  • Course
  • Institution

Dit document bevat een samenvatting van het vak wetenschappelijk programmeren in de programmeertaal Python. Het bevat formules, redeneringen, voorbeelden, ... . De inhoud staat vermeld per PC lab.

Preview 2 out of 14  pages

  • September 25, 2024
  • 14
  • 2023/2024
  • Summary
avatar-seller
Wetenschappelijk programmeren: pyhton
PC lab 1
7 ---> int
➔ ASCII
7.8 ---> float
“sqldngoi” ---> str -> built in gegevenstype
B = True (=1) / Falsee (=0) ---> bool
List = [ B, “a”, 8, -16.13 ]

Operatoren: (vanaf 1 float => resultaat ook float)

- Op int en float:
o +;-;*; /
o ** ---> machtsverheffing
o // ---> gehele deling
o % ---> rest na deling
- Op str: a = ‘mooi’ ; b = ‘weer’
o a + b ---> concatenatie ~~~> ‘mooiweer’
o a*3 ---> duplicatie ~~~> ‘mooimooimooi’
- op bool:
o and, not x, or
o <, <=, >, >=, !=, ==
- Logische operatoren: &, |, ^, ~

Ingebouwde functies:

- Len() --> # karakters
- Pow(x, 2) ---> x tot de tweede macht
- Round(3.14159, 2) ---> afronden 2 getallen na komma
- Max(x,y,z) // Min(x,y,z) ---> max // min v argumenten
- Abs(-6298) ---> absolute waarde
- Range(6,36,2) ---> van 6 tem 35 in stappen v 2 (start, stop, step)
- Help() ---> functiedocumentatie weergeven
- Print()
o Sep = “-“*10
o End = “!” ; end = “\n” ---> nieuwe regel
- Andere: tabel 3.4 (p62 op computer)

Aliasing:

- a=2 ; a=b => b = 2 (garbage collection)

Expressie  statement met a = 8

- Expr: 8 + 3*4 log expr: a > 2
- Stat: res1 = a + 3*a -2 res2 = a < 2 (---> False)

Modules:

- Import math: (3.6.2)
o Math.sqrt()

, o Math.sin()
o …
- Import random (3.6.3)
o Random.randit(1,6) ---> random getallen tss 1 en 6
- Import numpy
o numpy.mean([2,4,9]) = gem v 2,4,9 = 15/3 = 5
o Eenv: import numpy spec: from numpy import mean met alias: import
numy as np

Typeconversies:

- Type() ---> gegevenstype opvragen: int / float / str / bool
- Bij input: gegstype = str
- Float -> str // int -> float // int -> str
- Float -> int ~~~> afronden naar 0
- Str -> float/int ~~~> niet altijd mogelijk



PC lab 2
If-elif-else:

- If LE1:
Uit te voeren code ----> als LE1 = True (stopt hier: gaat niet verder nr elif,
programma stopt wnr 1e criterium voldaan is => met negatieve werken)
- Elif LE2:
Uit te voeren als LE1 = False en LE2 = True
- …
- Else:
Uit te voeren als alles hierboven = False
- Kan genest w

While(-else):

- While LE:
Code die herhaaldelijk uitgevoerd w zolang LE = True
Else:
Code die 1x uitgevoerd w als False bij while
(als 1 keer totaal printen: uit while-lus ; als iedere keer printen: in while-lus)
(vaak in while lus opnieuw vraag stellen zodat lus blijft doorgaan)
- Som v getallen: getal = (2)
som = 0 (teller initialiseren vóót wihile-lus)
while ???: (waaraan het moet voldoen)
som = som + getal
getal = getal + (stappen waarin je gaat)
- Alles in lus moet aan de VOORWAARDE voldoen
- Als nooit = False => oneindige lus (stoppen: scripts -> CNTRL-SHIFT-C ; interactive:
interrupt/restart)
- Kan genest w
- Stopt als ‘exact’/’break’ ingegeven w

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 biobroeder. Stuvia facilitates payment to the seller.

Will I be stuck with a subscription?

No, you only buy these notes for $5.87. You're not tied to anything after your purchase.

Can Stuvia be trusted?

4.6 stars on Google & Trustpilot (+1000 reviews)

53340 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.87
  • (0)
Add to cart
Added