4 Reasons to Choose Python as First Language






  1. 1.Simple Elegant Syntax

  2. Programming in Python is fun. It's easier to understand and write Python code. Why?The syntax feels natural. Take this source code for an example:
    a = 2
    b = 3
    sum = a + b
    print(sum)

    Even if you have never programmed before, you can easily guess that this program adds two numbers and prints it.
  3. 2.Not overly strict

    You don't need to define the type of a variable in Python. Also, it's not necessary to add semicolon at the end of the statement.

    Python enforces you to follow good practices (like proper indentation). These small things can make learning much easier for beginners.
  4. 3.Expressiveness of the language

    Python allows you to write programs having greater functionality with fewer lines of code.You will be amazed how much you can do with Python once you learn the basics.
  5. 4.Great Community and Support

    Python has a large supporting community. There are numerous active forums online which can be handy if you are stuck. Some of them are:

Comments

Popular posts from this blog

Question 3- What do you know about filter feature of MS Excel?

Question 6- What is conditional formatting?

Question 7- What do you mean by data validation?