0
Size: a a a
0
b
0
b
0
0
AE
py3
def gen(point):
value = 0
if point<0: raise ValueError
while value<=point:
yield value
value+=1
print(*gen(10))
0 1 2 3 4 5 6 7 8 9 10
R3
b
b
AE
GS
GS
БГ
R3
БГ
py3
raise SyntaxError("there is no code!")Traceback (most recent call last):
File "source_file.py", line 1, in <module>
raise SyntaxError("there is no code!")
SyntaxError: there is no code!
AT