Home TECHNOLOGY Basic Terms Of Python Programming

Basic Terms Of Python Programming

With the help of this program, We will now familiarize you with individual basic terms of Python programming, which are essential for learning and understanding Python. First of all, let’s take a look at how such a Python file is processed: The program always starts at the top of the file and works through the program from there line by line downwards. Since we have only written one line, the program begins to process this one line of code immediately after the “run” button clicks.

Function

And the first thing it sees is the word print. Print is a so-called function that allows us to print something on the console. In plain language, this means that when we call this print function, everything between the double superscripts is printed out on the console. For example, if we want to expand this to “Hello world, I’m just learning to program,” this new text will be output as soon as we rerun the program. Set of commands grouped under a single name. Example:

  • print (“Text” ): displays text in the console
  • input (“Text” ): allows you to enter a variable that the user has chosen via the console.

Instructions

In technical terms, such a line is referred to as a so-called instruction. This instruction tells the computer what to do. For example, if we copy this statement and paste it again on the following line, as soon as we run the program, the computer will print the sentence twice in a row on the console because we finally instructed it to do just that.

Comments

In addition to these instructions, which give the computer commands, there are also so-called comments in programming. To comment, write a hash (hashtag), followed by a space and the statement you want to write about it. For example, here we can write: # This is our Hello World program. The difference between a comment to instruction is that the computer completely ignores a comment when the program is executed. So words are used to make small notes within your schedule to describe certain things. With a comparatively long program that you haven’t seen for several weeks or even months, comments can be constructive in finding your way around your project.

You will find that words are beneficial in your programming career over time. Incidentally, comments do not always have to be written in one line but can also be placed at the end of a statement. This brings us to the end of this introduction to the Python programming language. Today, you learned about Python, how to write your first own program, what the print function is all about, and got to know other critical basic terms. If you want to continue learning Python, check out the following blog posts because that’s where it starts to get exciting.

  • # Text: helps to understand program lines for a third-party coder.
  • ‘” ‘(the quotation marks): conventionally, they are used for text that participates in the code.

Libraries / Bookstores

Set of modules or functions adding possibilities to Python. Example: NumPy (for mathematical calculations), matplotlib (for graphics)…

The Variables

Area of ​​computer memory in which a value is stored. Warning, by default, Python considers that a variable stored using the input() function is text. If you enter a number (very often the case), you will have to specify that it is a number using the float() or int() functions.

Also Read: What You Can Do With Python

Tech Cults
Tech Cults is a global technology news platform that provides the trending updates related to the upcoming technology trends, latest business strategies, trending gadgets in the market, latest marketing strategies, telecom sectors, and many other categories.

RECENT POSTS

Man And Technology Must Collaborate In The New GDPR Era

In the era of heightened awareness of personal data privacy, following the introduction of the GDPR, companies need to be prepared for the influx...

Team And Technical Agility In SAFe

Scaled Agile Framework (SAFe) gives an exhaustive way to deal with executing light-footed standards and practices at scale. SAFe depends on seven center -...

Top Python Libraries For Web Scraping

Web scraping is an effective method for data retrieval and extraction, allowing users to access and gather information from websites using automation tools and...

Income Tax Filing For Startups And Small Businesses In India

Introduction Startups and small enterprises in India have to file taxes. It assures tax compliance and helps firms keep clear financial records. Startups and small...

Word Comments And Revisions: How To Track Changes On The Document

How tracking changes applied to a Word document works: revisions and comments are just a click away. Although collaborative editors are increasingly "popular," Word...

Holding Company: What Is It For, And What Are The Benefits?

Most entrepreneurs have yet to learn the benefits that the establishment of a holding company can offer, thinking that such instruments are only advantageous...