1
0
forked from tdwojak/Python2017
# Conflicts:
#	labs02/test_task.py
This commit is contained in:
s45162 2017-12-02 15:35:13 +01:00
parent 8eda90d9f8
commit 4a20298ab2

3
labs03/task02.py Normal file
View File

@ -0,0 +1,3 @@
def alfaRange(x, y):
for i in range(ord(x), ord(y)):
yield chr(i)