100% satisfaction guarantee Immediately available after payment Both online and in PDF No strings attached
logo-home
Samenvatting Programmeren Python $4.77
Add to cart

Summary

Samenvatting Programmeren Python

1 review
 794 views  10 purchases
  • Course
  • Institution
  • Book

Een samenvatting van de eerste periode Hbo Bio-informatica voor het vak Binp. Hierin worden alle stapjes en begrippen duidelijk uitgelegd met aan het eind nog voorbeeld codes.

Last document update: 7 year ago

Preview 3 out of 27  pages

  • No
  • H1 t/m h9
  • November 5, 2017
  • November 5, 2017
  • 27
  • 2017/2018
  • Summary

1  review

review-writer-avatar

By: steijnh • 3 year ago

avatar-seller
Binp samenvatting




Binp aantekeningen
Alle stof uit de les

Printen
Print(“Hello World”)
Laat: Hello World zien op het scherm.

Print(2+3)
Laat: 5 zien op het scherm.

Print(Hello World)
Dit geeft een foutmelding, omdat er geen " " gebruikt zijn.

Print(“Je nieuwe score is”, 1030+10”)
Laat: Je nieuwe score is 1040 op het scherm zien.

Print(“Je nieuwe score is”, “1030+10”)
Laat: Je nieuwe score is 1030+10 op het scherm zien.

Print(“Je nieuwe score is,”, 1030+10”)
Laat: Je nieuwe score is, 1040 op het scherm zien.


Escape codes

Print(“Ik wil een aanhalingsteken “ tonen.”)
Dit geeft een foutmelding

Print(“Ik wil een aanhalingsteken \“ tonen.”)
Laat: Ik wil een aanhalingsteken “ tonen zien op het scherm.

De combinatie van twee tekens of karakters \” wordt een escape code
genoemd.

Print(“Het bestand staat in C:\\nieuwe folder”)
Laat: Het bestand staat in C:\nieuwe folder zien op het scherm.

Print(“Dit\nis\nmijn\nvoorbeeld.”)
Laat: Dit is mijn voorbeeld zien op het scherm, maar dan onder elkaar
Commentaar


BINP SAMENVATTING "1

, #Dit is commentaar, het begint namelijk met een # teken.
#en de computer negeert dit volledig.

Print(“Dit is geen commentaar. De computer zal”)
Print(“dit begrijpen en printen op het scherm”)

#print(“Dit is wel commentaar ook al is het correcte computertaal.”)

Print(“Hoi”) #Dit is commentaar na de codelijn

Print(“Hoi”)
‘’’Dit is een meervoudige lijn
Van commentaar. Niets zal
door de computer behandeld
worden.’’’
Print(“Einde”)

De bovenstaande manier van commentaar noemen we docstrings. Docstrings
laat toe om documentatie te schrijven naar de code die dan later automatisch
gebruikt kan worden om geprint te worden. Voor normale commentaar werkt
# het beste.


Toekennen van operatoren

Operators:
+ —> getallen optellen
- —> getallen van elkaar afhalen
* —> vermenigvuldigen
/ —> deling met komma getal
// —> deling zonder komma getal
% —> rest deling
** —> exponent

x=5
x = x+1
print(x)
Laat: het getal 6 zien op het scherm

x=5
x+1
print(x)
Laat: het getal 5 zien op het scherm

x=5
x+=1
print(x) —> laat het getal 6 zien op het scherm
Variabele



BINP SAMENVATTING "2

, Variabele beginnen met een kleine letter, daarna kunnen ze kleine letters,
hoofdletters, getallen of underscores bevatten.

Voorbeelden:
first_name
distance
dsg


Volgorde van de bewerkingen

Gemiddelde = 90 + 86 + 71 + 100 +
De computer rekent hier eerst en telt daarna de rest op.

Dit is de juiste manier:
Gemiddelde = (90 + 86 + 71 + 100 + 98) / 5


Basis Vergelijkingen

Voorbeeld if statements:
a=4
b=5
If a < b:
print(“a is kleiner dan b”)
If a > b:
print(“a is groter dan b”)
print(“Einde”)
Laat: a is kleiner dan b zien en Einde op het scherm.

If a <= b:
print(“a is kleiner of gelijk aan b”)
If a >= b:
print(“a is groter of gelijk aan b”)

If a == b:
print(“a is gelijk aan b”)
If a != b:
print(“a is ongelijk aan b”)

#Dit is fout
a == 1
#Dit is ook fout
If a = 1:
print(a is één”)


Inspringen of Indention



BINP SAMENVATTING "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 tedejong. Stuvia facilitates payment to the seller.

Will I be stuck with a subscription?

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

Can Stuvia be trusted?

4.6 stars on Google & Trustpilot (+1000 reviews)

48072 documents were sold in the last 30 days

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

Start selling
$4.77  10x  sold
  • (1)
Add to cart
Added