bestand = open("IO-exceptions/amino_slc.csv", "r")
lijst = []
for regel in bestand:
a = regel.strip().split(",") #belangrijk voor \n weg te krijgen
lijst.append(a)
print("SLC | Aminozuur\n------------------")
for koppel in lijst:
stuk = koppel[1]
print("{:4s}| {:s}".format(stuk,koppel[0]))
bestand.close()
2e voorbeeld:
bestand = open("IO-exceptions/rainfall_brussels.txt", "r")
lijst = []
for regel in bestand:
a = regel.strip().split(" ") #belangrijk voor \n weg te krijgen
lijst.append(a)
i=0
optel = 0
print("Maand Hoogte (mm)")
for koppel in lijst:
stuk = 0
if i >= 1:
print("{:7s} {:s}".format(koppel[0],koppel[1]))
stuk = float(koppel[1])
optel+=stuk
i+=1
waarde = round(optel, 3)
print("{:7s} {:f}".format("Tot:",waarde))
bestand.close()
Zie vorige blaadjes voor alle commando’s
, 2. Bestand wegschrijven
stopcode = 0
namen = []
score = []
i=0
while stopcode == 0:
naamvraag = input(str("Wat is het kind's naam? (Type STOP om de lijst weer te geven):"))
if naamvraag == "STOP":
break
scorevraag= input(("Wat is diens score?"))
namen.append(naamvraag)
score.append(float(scorevraag))
print(namen)
print(score)
bestand = open("leerlingenscores1.6/leerlingen_Scores.txt","w")
bestand.write("{:10s} {:>25s}\n".format("Naam","Punten"))
bestand.write("--------------------------------------\n")
for elk in namen:
bestand.write("{:10s} {:>25f}\n".format(namen[i],score[i]))
i +=1
bestand.close()
3. Try-except
try:
tel = input("Geef de teller: ")
noem = input("Geef de noemer: ")
print("De deling = ", float(tel)/float(noem))
except ValueError:
print("De getallen zijn geen floats")
except ZeroDivisionError:
print("Noemer is 0, delen door 0 is voor snuls")
2e voorbeeld:
# -*- coding: utf-8 -*-
while True :
rn_str = input ("Geef rijksregisternummer : ")
if rn_str == "": # indien niets ingegeven -> break
break
try:
# verzeker je ervan dat lengte juist is , indien voorwaarde niet
# voldaan is , werp AssertionError op
, assert len (rn_str) == 11
getal1 = int( rn_str [0:9]) # zet eerste 9 om naat int
getal2 = int( rn_str [9:]) # zet dat laatste om naar int
controle = 97 - getal1 % 97 # bereken zelf controle getal
if controle == getal2 : # vergelijk controle getal
print (rn_str , "is een geldig rijksregisternummer.")
else :
print (rn_str , "is ongeldig.")
except AssertionError :
print ("Foute lengte van rijksregisternummer.")
except ValueError :
print ("Fout bij het omzetten van str naar int.")
print(" Programma stopt .")
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 Omit20. Stuvia facilitates payment to the seller.
Will I be stuck with a subscription?
No, you only buy these notes for $6.35. You're not tied to anything after your purchase.