Python is an open source, object oriented, high level programming language developed by Guido van Rossum in 1991 at the National Research Institute for Mathematics, Netherlands.
Why Python?
- Shorter Code
- Object-Oriented Language
- Open Source Language
- GUI Programming Support
- Wide Range of Libraries and Frameworks
Applications of Python
- Desktop Applications
- Web Applications
- Mobile Applications
- Artificial Intelligence
- Date Mining
How to Use
Use the following link to directly see it in action in your browser:-
Or
Download and install from the following link to Run it on your system.
First Program
print("Hello World")
Output:-
Hello World
Separators:-
print(10,20,30,sep="*")
print(10,20,30,sep=",")
print(10,20,30,sep="\n")
print(10,20,30,sep="\t")
Output:-
10*20*30
10,20,30
10
20
30
10 20 30
Comments
Post a Comment