Tag Archives: Python
PyTAG: Saving and Loading
This is another of my small “Python Text Adventure Game” tutorials. I’ll show you a simple way to save data to a file and load it again.
First of all, you have to import the regular expression module re. Continue reading
Python Text Adventure Game: Simple Interaction
This is the excerp of this text ’cause it’s so fraking long. Continue reading
Python Text Adventure Game: Displaying Text Slowly
I started to work on a Python text adventure game. I will split the working progress into several parts. This is the first one. With “displaying the text slowly” I mean that, for example the introduction text, should appear like … Continue reading
Caesar Cipher in Python
I just wrote a simple encryption application using the caesar cipher. I wrote the same in C++ a while ago but this version is, in my opinion, much better coded. I decided to stop learning C++ and learn Python instead. … Continue reading
