We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 86b7c18 commit d4a63e4Copy full SHA for d4a63e4
basic_encryption/common.py
@@ -1,6 +1,7 @@
1
import random
2
3
4
+# https://stackoverflow.com/questions/7001144/range-over-character-in-python
5
def character_generator(start_char, stop_char):
6
for char in range(ord(start_char), ord(stop_char)+1):
7
yield chr(char)
0 commit comments