So I decided to finally seat down and learn python the right way
This is my playground to all my python code
The guess game it's a simple control flow example. You try to guess a number
between 0 and 10.
The palindrome test takes a string
and checks if it's equals to the reverse of itself, ignoring cases and special characters.
The grocery shopping it's a example on how to read and write python objects on files using pickle.
The file operations encrypts a text using the caesar cipher(for now) and stores in a file.
The object serializer takes an object as a argument and serializes into json
.
socket has a client
and a server
. The client
sends to the server
a "Hello, World
", which in return sends back to the client
the same message.
The count group counts how many times the letters repeats consecutively.