Python Basics - 1

Python Basics - 1

Table of contents

No heading

No headings in the article.

I will be discussing python basics in My blogs ,I am a learner who wants to share what I learned.Hope you learn something new.

Computers works on a binary system, binary system has only two values either 0 or 1.

It's impossible for humans to write everything in 0,1. So we need a language to communicate with our computer. Hence we have programming languages

Programming languages can be used by humans to code some instructions that will be converted to 0,1 so that computer can understand and execute our instructions.

We have process like compilation, interpretation for the purpose converting source code (programming language code ) to Binary equivalent.

One such language is python , python is known for its easy and simple syntax.

Python is general purpose programming language, meaning it can be used for multiple purposes like web development, Data science etc.

We can create a file with .py extension in order to write some python code.

Nextly , we will jump into topics like variables , data types etc..