I am doing a program that changes a number in base 10 to base 7, so i did this :
num = int(raw_input(\"\")) mod = int(0) list = [] while num> 0: mod =
Doing the following worked for me in Python3
print(*list,sep='')