Getting Started with Python 🐍

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 πŸ™‚

  1. Download Python

  2. 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.

  1. Open the cmd or terminal and execute python –version

  2. Using Python’s builtin sys module

import sys

print(sys.version)
3.11.6 (main, Oct  8 2023, 05:06:43) [GCC 13.2.0]