1. Getting Started with Python π#
Itβs pretty easy to start with Python Language π. We would be using Python >= 3.11 in this Repository as of now π
Pull the docker image naveen8/prodigiouspython or build a Docker image by using the Dockerfile present in our Repository and run the container out of it which comes bundled with everything to run the code present in our repository π.
Lets check the version of Python we are using. We have 2 ways to know this.
Open the cmd or terminal and execute python βversion
Using Pythonβs builtin sys module
import sys
print(sys.version)
3.12.3 (main, Apr 10 2024, 05:33:47) [GCC 13.2.0]