On Python
On Python
Python
Duration 30 days
• Python is high level language that will make a programmer focus on what to do
instead of how to do.
• Numeric
• Sequence type
• Boolean
• Set
• dictionary
Decision making
and if the condition is false then another set of statements are executed.
• if statement
• if else statement
• Nested if statement
• if-elif ladder
Python Loops
Loop control statements change the execution from its normal sequence.
def fun():
print(“ HELLO FROM A FUNCTION”)
fun()
OOPs
OOPs, refers to Object Oriented Programming and its deal with objects
and their properties. Oops is about creating objects that contain both
➢ Class
Class is a user define datatype that binds data members and member
functions ,which can be accessed and use by creating object of that
class.
➢ Object
An Object is a instance of class. whenever class is defined , no memory
is allocated but when object is created memory is allocated of that
class.
Python GUI programming
Python provides the standard library Tkinter for creating the graphical
Bill Management
➢ In this project, I have built a GUI based
those items.
Font End (Language used)
➢ Front – End is built using Python Tkinter . Here you will see the menu and get the option
to choose items present on the menu and also you see the display button after clicking the
button this software will generates your bills of selected items
Back End
➢ Back – End is built using Python programming . Here you will generates your bills of
selected items just in one click.
Conclusions