Search This Blog

Python Programming

Introduction to Python


Python is a widely used general-purpose, high level programming language. It was created by Guido van Rossum in 1991 and further developed by the Python Software Foundation. It was designed with an emphasis on code readability.
Python can be easy to pick up whether you're a first time programmer or you're experienced with other languages.

Advantages of using Python:

Friendly Environment: The community hosts conferences and meetups, collaborates on code, and much more. Python's documentation will help you along the way.
Easy to Learn: As we mentioned above that Python can be east to pick up whether you're a first time programmer or you're experienced with other languages.
Interpreted Languagewhich means the source code of a Python program is converted into bytecode that is then executed by the Python virtual machine.
Free and Open-Source: This means Python is available everywhere and in free of cost, you don't need to pay to download python compiler, and there are so many IDEs some of them are also free, like: My Favourite is VSCode, you can choice your own.
Large Community: This means Python is Everywhere, Python has a large community on which you can found your error Solutions, you can ask any errors there, you can take help at any time, at any place.

So for more information about Python, you can go on Official website of Python: Python Official Website ( Click here).


So here Index goes:

Contents:

No comments:

Post a Comment

how to implement YOLOv3 using Python and TensorFlow

Object Detection with YOLOv3 Introduction YOLOv3 (You Only Look Once version 3) is a real-time object detection algorithm that can detect ob...