Skip to main content

Posts

Showing posts from July, 2020

Basic Concepts of Python

Basic Concepts of Pythons What is Python ? Python is high-level programming language. It has been used in numerous areas, including web programming , scripting , scientific computing , and artifical intelligence . There are three major versions of Python. They are Python1.x, Python2.x and Python3.x Let's start learning Python. You need to write yourself and run the code. NEVER EVER copy and paste the code. Your First Program Just like other programming languages, Let's start with "Hello World !" program. What is "Hello World Program"? It is the first program in nearly every programming language for every programmer. It displays the words, "Hello World". It doesn't really print anything on the paper. In Python, it looks like this: print("Hello World") After writing the code above in your program, click on run button.(click e...