intermediate… Adding GIT Source Control to PyCharm 7 Aug 201922 Dec 2021 SSH keys This tutorial assumes you have already created an empty Repo in github(or similar) and have write access to that Repo. Also, I recommend using SSH keys for authentication…
begginer… Python Decimals 3 Mar 2019 Often times you find yourself trying to perform math on floating point numbers and discover weird intricacies with this data type in python. There are many formatting options, and data…
begginer… How to Check If File Exists in Python 28 Feb 201920 Mar 2019 In handling files in python, it's sometimes useful to check if it exists first before running a command. Take this example for instance: import osos.remove("thisFileDoesNotExist.txt") Gives you this horrible error:…
begginer… Python Random Library 26 Feb 201917 Jul 2019 The python random library is a very powerful tool for anyone interested in doing any kind of statistical analysis. It can be useful for use cases related to internet security…
begginer… Python F String 20 Feb 201920 Mar 2019 Being python's birthday today, or the anniversary of Guido Van Rossum's announcement of python, I figured I'd post something cool for the community. There actually isn't an F string on…