Skip to content

Commit d4a63e4

Browse files
committed
add stack overflow attribution
1 parent 86b7c18 commit d4a63e4

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

basic_encryption/common.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import random
22

33

4+
# https://stackoverflow.com/questions/7001144/range-over-character-in-python
45
def character_generator(start_char, stop_char):
56
for char in range(ord(start_char), ord(stop_char)+1):
67
yield chr(char)

0 commit comments

Comments
 (0)