Python — this easy-to-learn, powerful and widely used programming language. It was created by Guido van Rossum in 1991. Python is famous for the following features:
1. Easy to read:
Python code is written in a way that is convenient for humans to read, making it ideal for beginners.
2. Broad capabilities:
Web development (Django, Flask), artificial intelligence and machine learning (TensorFlow, scikit-learn), data analysis (Pandas, NumPy), automation (Selenium), game creation (Pygame) and other fields are used.
3. Cross-platform:
Python programs work on Windows, macOS and Linux.
For example a simple Python code:
name = input("What is your name? ")
print("Hello,", name)