stringcomprehension.py
#string comprehension for python def strcomp(char, length): return ''.join([char for i in range(length)])