Slide 1

Slide 1 text

Let’s learn Python ! An introduction to Python programming language

Slide 2

Slide 2 text

Hi. I’m Kiran Gangadharan @kirang89 http://kirang.in

Slide 3

Slide 3 text

Hacker Programmer Open Source enthusiast Python Lover

Slide 4

Slide 4 text

Prelude

Slide 5

Slide 5 text

Why learn Python ?

Slide 6

Slide 6 text

Language for humans

Slide 7

Slide 7 text

Readability if time == 'morning': print "Good Morning" elif time == 'noon': print "Good Noon" else: print "Good Evening"

Slide 8

Slide 8 text

Powerful Productive &

Slide 9

Slide 9 text

class HelloWorldApp { public static void main(String[] args){ System.out.println("Hello World!"); } } Java

Slide 10

Slide 10 text

C++ #include int main(int argc, char** argv) { printf("Hello World"); }

Slide 11

Slide 11 text

And

Slide 12

Slide 12 text

Python print "Hello World"

Slide 13

Slide 13 text

No content

Slide 14

Slide 14 text

Portability

Slide 15

Slide 15 text

Web Development Database Access Embedded Systems Graphics Programming Legacy System Integration Scientific and Numeric Desktop GUI Game Development Data Mining Network Programming System Administration Education Government Applications

Slide 16

Slide 16 text

Who uses it ?

Slide 17

Slide 17 text

No content

Slide 18

Slide 18 text

Conclusion

Slide 19

Slide 19 text

Python is awesome !

Slide 20

Slide 20 text

created this awesome language ? Who

Slide 21

Slide 21 text

Guido Van Rossum The Creator

Slide 22

Slide 22 text

Overview What are you going to learn ?

Slide 23

Slide 23 text

• Hello World ! • Calculator • Variables • Comments • Strings • Control Flow • Loops • Data Structures • Functions • Classes • Utilities in the standard library • Cool things you can do with Python

Slide 24

Slide 24 text

Let’s write some code !

Slide 25

Slide 25 text

Questions ?

Slide 26

Slide 26 text

You can always reach out to me [email protected] for any queries or feedback

Slide 27

Slide 27 text

Thank You ! http://github.com/kirang89/workshop-kit