ctrc python

Click here to load reader

Upload: sujit-shakya

Post on 19-May-2015

187 views

Category:

Technology


0 download

TRANSCRIPT

  • 1. Sujit Shakya Python

2. Programming Language? Language is a tool to perform certain task. Categories: Compiled language & Interpreted/Scripting Language C, C++ are the example of Compiled Language. PHP, Perl are the example of Scripting Language 3. What is Python? Compiled Language or Scripting Language? 4. What is Python? Compiled Language or Scripting Language? Python was developed by Guido van Rossum in the late 1980s. It is an Object Oriented High Level Language. Python is a scripting language, but in principle, it is first compiled and then interpreted. 5. Guido Van Rossum 6. Why Python? print hello #display hello in the screen include include void main() { printf(Hello World); /*display hello in the screen*/ getch(); } Python focuses on user readability and simplicity 7. pi = 3.14 for r in range(4): area = pi * r*r print r, area print End of Program Python is dynamic in nature. #include #include void main(){ float pi = 3.14; int r; float area = 0; for(r=0; r