what is python? what is the step to understand this language?
Answers
Answered by
0
Python is a powerful high-level, object-oriented programming language created by Guido van Rossum. It has simple easy-to-use syntax, making it the perfect language for someone trying to learn computer programming for the first time.
sonam337:
ohhk
Answered by
0
Python is a powerful high-level, object-oriented programming language created by Guido van Rossum.
It has simple easy-to-use syntax, making it the perfect language for someone trying to learn computer programming for the first time.
Before getting started, lets get familiarized with the language first.
Python is a general-purpose language. It has wide range of applications from Web development (like: Django and Bottle), scientific and mathematical computing (Orange, SymPy, NumPy) to desktop graphical user Interfaces (Pygame, Panda3D).
The syntax of the language is clean and length of the code is relatively short. It's fun to work in Python because it allows you to think about the problem rather than focusing on the syntax.
Simple Elegant Syntax
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.
It has simple easy-to-use syntax, making it the perfect language for someone trying to learn computer programming for the first time.
Before getting started, lets get familiarized with the language first.
Python is a general-purpose language. It has wide range of applications from Web development (like: Django and Bottle), scientific and mathematical computing (Orange, SymPy, NumPy) to desktop graphical user Interfaces (Pygame, Panda3D).
The syntax of the language is clean and length of the code is relatively short. It's fun to work in Python because it allows you to think about the problem rather than focusing on the syntax.
Simple Elegant Syntax
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.
Similar questions