Generating random numbers in Python is a fairly straightforward activity which can be done in a few lines. There maybe many variations which you need to do...
Free Python Hosting with Deta.sh to Get Your Code on Cloud
For some of your web apps you develop in python, you will want to run them on the cloud so that your script can run 24/7. For some of your smaller...
Python Await Async Tutorial with Real Examples and Simple Explanations
The python await and async is one of the more advanced features to help run your programs faster by making sure the CPU is spending as little time as possible waiting and instead as much time as...
How to Build a Twitter Bot with Python and Twitter API v2
Twitter Bots can be super useful to help automate some of the interactions on social media in order to build and grow engagement but also automate some tasks. There has been many changes on the...
How To Read And Write To Files In Python
Reading and writing is one of the most fundamental things you will do in Python. There are many variations of this of whether you are working with a text file, a comma separated file, or even image...
How To Build a Discord Bot Using Python
Discord is a popular collaboration platform that initially was targeted at gamers that has more than 300million users. Within Discord, there's an ability to create 'bots'. These are computer users...
7 Python Programming Myths
Python is among the top programming languages that have been used in recent years in designing high-end technologies, such as Machine Learning, artificial intelligence, and data science. Programmers...
Comparing Python to other Web Development Languages
If you are new to the world of computer programming, choosing a programming language, to begin with, is probably the toughest hurdle. Currently, there are thousands of programming languages with...
Reading and writing text to files in Python
The easiest and simplest mechanism to store data from python is the humble file storage which is often, but does not have to be, text based. There are no libraries that you require, and you...
Storing settings data in Config File in Python
A config file is a flat file but is used for reading and writing of settings that affect the behaviour of your application. These files can be incredibly useful so that you can put individual...