INTRODUCTION TO PYTHON:
The Python programming language hasa wide range of syntactical constructions,
standard library functions, and interactive
development environment features. Fortunately, you can ignore most of that; you just need to learn enough to write some handy little programs. You will, however, have to learn some basic programming concepts before you can do anything. Like a wizard-in-training, you might think
these concepts seem arcane and tedious, but with some knowledge and practice, you’ll be able to command your computer like a magic wand to perform incredible feats.
Errors Are Okay ! Programswill crash if they contain code the computer can’t understand, which will cause Python to show an error message. An error message won’t break your computer, though, so don’t be afraid to make mistakes. A crash just means the program stopped running unexpectedly.
Python is the object oriented general purpose programming language. It is interpreted language because it is execute line by line. You can wright some desktop application, webpages, mobile application etc. Python mainly is used for machine learning artificial intelligent. There have many libraries like scikit-learn and tensorflow , pytorch etc. for machine learning and artificial intelligence.
Comments
Post a Comment