Recent Post

Python Basic Print Hello world

Python Programming Language is one of the most in-demand programming languages in the IT industry. Along with being one of the best introductory languages for beginners, Python is also a full-fledged and all-around programming language for professionals!




What is interpreted programming language ? 

A language which script is saved and executed in the same format is called interpreted programming language.

Python is an interpreted language which means that Python script is saved and executed in the same format in which you create the script, unlike compiled languages where the code is first translated to a set of machine-specific instructions and then saved as an executable file.



Print Hello world : 
If you want to 'print hello world' or something else there is no need to create programming format as like C, C++ and java. Simply

 print "Hello world"

and press enter. That's ok you are successfully run python first code line and execute this. I think if it's your first job then you are so excited. Because you run and execute first program in python.