IDLE
After installing Python, we need to start using it to <CODE>.
In this post, we will learn how to use the Python Interpreter IDLE, and how to print "Hello World" using IDLE.
So, lets get started.
The Python Interpreter we are using here is IDLE (Integrated Development Environment) .
Click on START > IDLE
It will launch the IDLE Interpreter which looks like this :
In this post, we will learn how to use the Python Interpreter IDLE, and how to print "Hello World" using IDLE.
So, lets get started.
The Python Interpreter we are using here is IDLE (Integrated Development Environment) .
Click on START > IDLE
It will launch the IDLE Interpreter which looks like this :
You can write appropriate python codes after the >>>
For example :
The above image shows illustration of +, -, *, /, %
These are the basic arithmetic operators, addition (+), subtraction (-), multiplication (*), division (/), modulo (%) and power (**)
You can practice with the Code Challenge in the next post.


Comments
Post a Comment