Monday, October 19, 2015

ROT13 Encoding

As I was trying to solve the problem of rotating the alphabet 13 characters I figured there had to be a better way of doing this. After some googling, I found out in the Python codecs module, a rot13 encoding function was in place.



By utilizing the build in codec, I was able to make my code compact and well organized. This also solved the problem of creating decryption code as well due to the way the rot-13 code works.

Thursday, October 15, 2015

Password Generator

This was the final code I ended up with  when I wrote the password generator. It was particularly hard to turn the list of all the information into a combine word with no spaces. I ended up working quite nicely with clear compact code. 

Friday, October 9, 2015

Name Interpreter and Greeter

This is the code I ended up using earlier when writing my greeter. This was one of the  earlier codes I wrote and was easy to add lowercase commands.

Thursday, October 8, 2015

Functions


 Playing around with functions, came up with this code initially. I was on the right track however it could be a lot more polished and functional.


This ended up being the polished code.