# Oefening 1 tekst1 = "Hello" tekst2 = "World" print(tekst1 + " " + tekst2)
Download hier het bestand.
# Oefening 2 getal1 = 8 getal2 = 3 print(getal1 + " " + getal2)
Download hier het bestand.
# Oefening 3 tekst1 = input("Tekst 1 ") tekst2 = input("Tekst 1 ") print(tekst1 + " " + tekst2)
Download hier het bestand.
# Oefening 4 getal1 = input("Getal 1 ") getal2 = input("Getal 2") print(int(getal1) + " " + int(getal2))
Download hier het bestand.