8
Python programming Prof B N Kshirsagar MIT Group , Aurangabad , MS, India

Python programming lab1

  • Upload
    profbnk

  • View
    57

  • Download
    2

Embed Size (px)

Citation preview

Page 1: Python programming lab1

Python programming

Prof B N KshirsagarMIT Group , Aurangabad , MS, India

Page 2: Python programming lab1

FOUNDERPython is powerful... and fast; plays well with others; runs everywhere; is friendly & easy to learn; is Open.

These are some of the reasons people who use Python would rather not use anything else

Page 4: Python programming lab1

www.python.org

For Linux machine, python is , in general, preloadedJust Type $ python

You will have “>>>” prompt for python shell

For other machines, Download and Install at your machine, from python.org

Page 5: Python programming lab1

First program

>>>print “Hello World !”Hello World !

Page 6: Python programming lab1

Second program

>>>x = 10>>>y = 20>>>z = x + y >>> print z 30

Page 7: Python programming lab1

Third program

>>>exam_fees = 10000>>>service_tax = exam_fees * 12.36 / 100 >>>total_fees = exam_fees + service_tax>>> print total_fees11236

Page 8: Python programming lab1

Thanks