Change the encode function so that spaces are simply skipped.
What will be an ideal response?
```
def encode(string,keyletters):
alpha="abcdefghijklmnopqrstuvwxyz"
secret = ""
for letter in string:
if not letter.lower() in " ":
index = alpha.find(letter)
secret = secret+keyletters[index]
print secret
```
You might also like to view...
A group of slides used for a classroom presentation is known as a ________
A) slide master B) slide show C) handout D) document
You are currently working on a database that you created two weeks ago. You receive a database from your manager, but you cannot seem to open both databases at once. Why not?
A) Access 2007 cannot open databases not created on the computer. B) Your copy of Access 2007 is bugged. C) Your manager sent you a corrupt file. D) Access 2007 does not allow two databases to be open at the same time.