Reiterating on Caesar and Iteration
Completed
Encryption vs Encoding
Cryptography in History
Revisit Info Theory Concept
About Control Flow
Today
Revisit Iteration
Revisit Caesar Cipher
Upcoming
Portfolio Discussion
Quiz
Last time, I alluded to our current version of our Caesar Cipher program not being very efficient. Today, we'll look into that, and create a better one. To do this, we'll convert characters into numbers, and then have the computer do a bit of math to more efficiently encrypt.
Before we work on this new version of our Caesar Cipher program, a brief overview of data types, and how they work in Python.
Iteration & the Caesar Cipher - Version 3
The previous design of our Caesar Cipher is very inefficient. We have the computer doing a lot of work for what should be pretty simple.
Let's talk a little about what's actually going on, and how we want to change our algorithm for our next version of the Caesar Cipher.
Now, we'll take those concepts, and see how to program them in Python. This is my 3rd iteration of the Caesar Cipher. We'll continue working on this next time, make sure to save your code from today.