User:Jegini lokesh
Appearance
Language Fundamentals Introduction Python is a general purpose high level programming language. Python was developed by Guido Van Rossam in 1989 while working at National Research Institute at Netherlands. But officially Python was made available to public in 1991. The official Date of Birth for Python is : Feb 20th 1991. Python is recommended as first programming language for beginners. Eg1: To print Helloworld: Java: 1) public class HelloWorld 2) { 3) p s v main(String[] args) 4) { 5) SOP("Hello world"); 6) } 7) } C: 1) #include<stdio.h> 2) void main() 3) { 4) print("Hello world"); 5) } Python: print("Hello World")