3. print('reptiel of zoogdier?')
diersoort = input()
if diersoort == 'reptiel':
print('legt', 'een', 'ei')
else:
print('geeft', 'melk')
---
Input: reptiel
4. print('reptiel of zoogdier?')
diersoort = input()
if diersoort == 'reptiel':
print('legt', 'een', 'ei')
else:
print('geeft', 'melk')
---
Input: zeptiel
5. print('Nederlands of Engels')
taal = input()
if taal == 'Engels':
print('Hello', 'good morning!')
else:
print('Hallo', 'goedemorgen!')
---
Input: engels
6. print('Nederlands of Engels')
taal = input()
if taal == 'Engels':
print('Hello', 'good morning!')
else:
print('Hallo', 'goedemorgen!')
---
Input: Engels
7. print('Nederlands of Engels')
taal = input()
if taal == 'Engels':
print('Hello', 'good morning!')
else:
print('Hallo', 'goedemorgen!')
---
Input: English
1. print('hond of kat')
dier = input()
if dier == 'hond':
print(...)
else:
print('miauw')
2. print('hond of kat')
dier = input()
if dier .. 'hond':
print('waf')
else:
print('miauw')
3. print('koe of varken')
dier = input()
if dier == ...:
print('boe')
else:
print('oink')
4. print('koe of kikker')
dier = input()
if dier == ...:
print('boe')
else:
print(...)
print('Nederlands of Frans')
taal = input()
if taal == 'Nederlands':
print('Hallo')
else:
print('Bonjour')
---
Input: Frans
print('Nederlands', 'of', 'Frans')
taal = input()
if taal == 'Nederlands'
print('Hallo')
else:
print('Bonjour')
---
Input: Frans
1. print('Nederlands of Frans')
taal = input()
if taal == 'Nederlands':
print('Hallo')
else
print('Bonjour')
---
Input: Frans
2. print('Nederlands of Frans')
taal = input()
if taal = 'Nederlands':
print('Hallo')
else
print('Bonjour')
---
Input: Nederlands
3. print('Nederlands of Frans')
taal == input()
if taal = 'Nederlands':
print('Hallo')
else:
print('Bonjour')
---
Input: Frans
4. print('Engels of Frans')
taal = input()
if taal == 'Engels':
print('Bonjour!')
else:
print('Hello!')
---
Input: Engels
5. print('Duits of Nederlands')
taal = input()
if taal == 'Duits':
print('Gutenabend!')
else:
print('Goedeavond!')
---
Input: Duits
6. print('Duits of Nederlands')
taal = input()
if taal == 'Duits':
print('Gutenabend!')
else:
print('Goedeavond!')
---
Input: Nederlands
7. print('Duits of Nederlands')
taal = input()
if taal() == 'Duits':
print('Gutenabend!')
else:
print('Goedeavond!')
---
Input: Duits
1. if in_de_thee == 'suiker' ^
SyntaxError: invalid syntax
2. print('gieten')
^
IndentationError: expected an indented block
3. if input('melk of suiker?') = 'suiker':
^
SyntaxError: invalid syntax
4. if in_de_thee == 'suiker:
^
SyntaxError: invalid syntax