Skip to content

Latest commit

 

History

History
78 lines (54 loc) · 3.55 KB

0_python-fundamentals.md

File metadata and controls

78 lines (54 loc) · 3.55 KB

Python fundamentals

What is Python?

  • Python is a high-level, interpreted, interactive, and - object-oriented scripting language.
  • Python is designed to be highly readable.
  • It uses English keywords frequently where other languages use punctuation.
  • Python is a great language for the beginner-level programmers and supports the development of a wide range of applications, from simple text processing to WWW browsers to games.

Why Python?

  • Python is a high-level language, which means it is easier to read and write.
  • Python is an interpreted language, which means that it is executed line by line.
  • Python is an interactive language, which means that you can interact with the interpreter directly.
  • Python is an object-oriented language, which means that it supports object-oriented programming.
  • Python is a scripting language, which means that it is used to write scripts to automate tasks.
  • Python is a cross-platform language, which means that it can run on multiple platforms.
  • Python is a general-purpose language, which means that it can be used for a wide range of applications.

What is a high-level language?

  • A high-level language is a programming language that is designed to be easy to read and write.
  • High-level languages are closer to human language than machine language.
  • High-level languages are easier to learn and use than low-level languages.
  • High-level languages are portable, which means that they can run on multiple platforms.
  • High-level languages are more powerful than low-level languages.

What is Python used for?

  • Python is used for web development, data analysis, artificial intelligence, machine learning, scientific computing, game development, system administration, and more.

How install Python?

  • You can download Python from the official website python.org.
  • You can install Python on Windows, macOS, and Linux.
  • You can install Python using the installer or package manager.
  • You can install Python using the command line or graphical user interface.

Please, Follow the instructions on the official website to install Python on your operating system.

How to write Python code?

  • To write Python code, you can use any text editor or an Integrated Development Environment (IDE) such as PyCharm, Visual Studio Code, or Jupyter Notebook.
  • You can save your Python code in a file with a .py extension, such as my_program.py, and run it using the Python interpreter.
python my_program.py
  • You can also run Python code interactively using the Python shell or an online Python interpreter such as repl.it.
python

Content of Python fundamentals

Where to start?

  1. Python Syntax
  2. Python Comments
  3. Python Variables
  4. Python Data Types
  5. Python Functions
  6. Python Commands
  7. Python Keywords
  8. Python Built-in Functions
  9. Python Modules

Summary

Python is a high-level, interpreted, interactive, and object-oriented scripting language. It is designed to be highly readable and uses English keywords frequently where other languages use punctuation.

Python is a great language for beginner-level programmers and supports the development of a wide range of applications, from simple text processing to WWW browsers to games.


<< Previous: Course Content | Next: Python Syntax >>