Now, We are going to start learning python programming and I hope to bring a set of tutorials for you like this.
Introduction of python
We had been heard about many IT languages and among these, Python is a basic language. Most people like to study this language because of the below characteristics.
- Python is an object-oriented language.
- Python is a high level and interpreted language.
- It’s short and it has fewer syntactical constructions more than other languages.
- It uses the English keyword like other programming languages.
How to install python?
You can install python 3 into your desktop machine or notebook
Where do we code python?
We can use various IDE for coding python such as notepad++, sublime text, PyCharm . . . etc.
- pycharm download https://www.jetbrains.com/pycharm/download/#section=windows
- notepad++ download https://notepad-plus-plus.org/downloads/
- eclipse download https://www.eclipse.org/downloads/packages/release/mars/r/eclipse-ide-java-ee-developers
- netbeans 8.2 download https://netbeans.org/downloads/8.2/rc/
- vscode download https://code.visualstudio.com/download
- sublime Text download https://www.sublimetext.com/3
You can download one IDE for start learning python programming with our site.
We run our first python program
syntax:
We use “print” keyword for printing any statements as output as below syntax.
print("The statement that want you print.")
Example:
1. First we code like above syntax in text editor.
print("Hello World!")
2. Save this file by a any name with “.py” extension
FirstProgram.py
3. Run this file .
4. This program produce below output.
Hello World!
You can free learning Python programming by following our Python articles sequentially.
456 total views, 1 views today