+ 1
Can someone pls tell me what's wrong with this code
def amb_list() amb = "" for i in "drux": amb += i yield amb print(list(amb_list()) #output: ['d', 'dr', 'dru', 'drux']
1 Odpowiedź
+ 4
# I made annotations where I changed something:
def amb_list(): # missing ":"
# check the indentation!!!
amb = ""
for i in "drux":
amb += i
yield amb
print(list(amb_list())) # missing ")"