Revisiting Python: A New Chapter in My Learning Journey

Niroash - Jul 9 - - Dev Community

The connection with Python began quite some time ago, but I still haven't managed to learn it completely. Then my friend Harish insistently encouraged me to give it another try. So, I have started to learn it again. However, my efforts were put to a stop in the middle.

Now once again, I came across a Facebook post about a free Python class. This time, I decided to join a structured class due to my previous unsuccessful attempt at self-studying. There was a requirement to write a blog about the learning process, which made me hesitant since I already have a heavy workload. Nevertheless, I chose to take up the challenge. Let's see how this goes.

This class was organized by the Kaniyam Foundation, and the course was conducted by Mr. Syed Jaufar. Mr. Shrinivasan introduced us to several forums and groups related to Linux OS and Open Source Software.

Today, I have reinstalled Python after a long break. I am excited to resume my learning journey, considering my past experiences with Ubuntu during my school days.

In today’s class, we were introduced to the print command in Python. The print function is used to display output to the screen. It’s a fundamental tool that helps us see the results of our code.

Here is a simple example:

print("Hello, world!")
Enter fullscreen mode Exit fullscreen mode

When you run this code, it will display:

Hello, world!
Enter fullscreen mode Exit fullscreen mode

Python Print Command Examples

Let's continue...

Niroash

.