2- Mastering Python Console: A Guide to Using the print() Function

Are you ready to take your Python skills to the next level? Look no further than the Python console and the powerful print() function. With this guide, you'll learn how to use print() to write and display text, variables, and even complex data structures. Say goodbye to guessing what your code is doing and hello to mastering the Python console.

In the Python console use print() function to write.

print("Hello My Dear Learner!")

Then click "Enter"

Hello My Dear Learner.png

print("My name is 'Your Name'. ")

You can print the output of mathematical operations, for example:

print (120/6)
# 20.0
print ("20 * 6 = ", 20*6)
# 20 * 6 =  120
x = 10
print(x)
# 10
>>> x = 10
>>> y = 20
>>> z = x + y
>>> print ("x + y = ", z)
# x + y = 30

In conclusion, the article provides a comprehensive guide on how to use the print() function in the Python console to write and display text, variables, and even complex data structures. By mastering the print() function, readers can improve their Python skills and have a better understanding of what their code is doing.

If you like the content, please SUBSCRIBE to my channel for the future content

Did you find this article valuable?

Support Azad Rasul by becoming a sponsor. Any amount is appreciated!