Posts

Exploring Python Basics

Image
 Python Basics             Python is a high-level programming language. Known for its simplicity, readability, and versatility. Python provides a more human-readable syntax. It is used in various fields like web development, app development, AI, automation, etc. It has been part of our day-to-day life directly and indirectly. Numerous libraries, including NumPy, Matplotlib, and TensorFlow, have made it easier to apply their tools in various fields of work.  What is a Comment?  Ans:- Comment is information, in code. Which does not execute while executing the code. It generally starts by putting ' # ' before the text. This continues till the line ends. e.g. # this is a normal comment. The comment is in green colour. Colour is changeable depending on the IDE. Printing the "Hello, World!" print("Hello, World!")