Here's my code so far.
def encryptMessage():
msg = "I came, I saw, I conquered"
i = 0
numChar = len(msg)
while i < numChar:
print msg[i:i+5]
i=i+5
It returns this;
I cam
e, I
saw,
I con
quere
d
The next part is having the program print the first letter in each line, then the second, then the third and so on. That should look something like this.
"IesIqd ,a u c wce aI,or m ne"
I honestly can't think of a way to do this. Any help would be appreciated.