INTRODUCTION TO PYTHON by Kiran.V. [ @kiranvm ] Nakul.E [ @NakulE ]
INTRODUCTION TO PYTHON ● About Python ● Python CLI ● Lists ● Modules ● Exception Handling ● Introduction To GUI Programming ● GUI Frameworks ● GTK ● GTK Widgets ● Glade ● References
Q: What Makes Python Different? ANS: Lot Of Things
INSTALLATION MAC OS and LINUX users, Please Don't Bother. Windows Guys, Install it from www.python.org
ABOUT PYTHON Designed By Guido Van Rossum in 1991 Web Applications, Softwares, Games, Mobiles etc Interpreted, Interactive, Object Oriented. Portable over Hardware and Software platforms.
LISTS Easy to work with arrangement of your data. Eg: movies=[“if only”,”hachiko”,”the prestige”]
FUNCTIONS
MODULES Modules let you organize your code for optimal sharing. Simply a text file containing python code. >>> Import random
#! /usr/bin/env python “”” example for using a module “”” Import random Print random.randint(1,100)
EXCEPTION HANDLING Exceptions are Run-time Errors. Traceback is python's way of reporting errors.
CREATIVE THINGS YOU SHOULD TRY!! ● Create a truth and dare game. ● Create your classmates birthday list ● Download entire results of your classmates ● Develop a simple game. And much more...
THANK YOU !!

Introduction to python programming

  • 1.
    INTRODUCTION TO PYTHON by Kiran.V. [ @kiranvm ] Nakul.E [ @NakulE ]
  • 2.
    INTRODUCTION TO PYTHON ● About Python ● Python CLI ● Lists ● Modules ● Exception Handling ● Introduction To GUI Programming ● GUI Frameworks ● GTK ● GTK Widgets ● Glade ● References
  • 3.
    Q: What MakesPython Different? ANS: Lot Of Things
  • 4.
    INSTALLATION MAC OS andLINUX users, Please Don't Bother. Windows Guys, Install it from www.python.org
  • 5.
    ABOUT PYTHON Designed ByGuido Van Rossum in 1991 Web Applications, Softwares, Games, Mobiles etc Interpreted, Interactive, Object Oriented. Portable over Hardware and Software platforms.
  • 6.
    LISTS Easy towork with arrangement of your data. Eg: movies=[“if only”,”hachiko”,”the prestige”]
  • 9.
  • 10.
    MODULES Modules letyou organize your code for optimal sharing. Simply a text file containing python code. >>> Import random
  • 12.
    #! /usr/bin/env python “””example for using a module “”” Import random Print random.randint(1,100)
  • 13.
    EXCEPTION HANDLING Exceptions areRun-time Errors. Traceback is python's way of reporting errors.
  • 15.
    CREATIVE THINGS YOUSHOULD TRY!! ● Create a truth and dare game. ● Create your classmates birthday list ● Download entire results of your classmates ● Develop a simple game. And much more...
  • 16.