Word File
Word File
PRINCIPAL GUIDED BY
DR.AbhinavShukla Mr. Vishal Katare
We are the student of class Xl ‘C’ of
Gyanodaya Senior Seconday School
Khuraideclare that this project has been
designed by me under the kind guidance of
Mr. Vishal Katare. This is my original work,
this project has been designed for practical
exam (2022-2023) computer science.
To remain motivational and to learn from
various experience and sources. It is
necessary that we should actively participate
in the learning process.
This is particular important in case in
science. In the experiment of doing
investigatory project can provide can provide
me new knowledge and new skills to that I
may enter into the world of science with
technology.
Python is an interpreted, object-oriented, high-
level programming language with dynamic
semantics. Its high-level built in data structures,
combined with dynamic typing and dynamic
binding, make it very attractive for Rapid
Application Development, as well as for use as a
scripting or glue language to connect existing
components together. Python's simple, easy to
learn syntax emphasizes readability and therefore
reduces the cost of program maintenance. Python
supports modules and packages, which
encourages program modularity and code reuse.
The Python interpreter and the extensive standard
library are available in source or binary form
without charge for all major platforms, and can be
freely distributed.
TKINTER
Tkinter is a Python binding to the Tk GUI
toolkit. It is the standard Python interface to the
Tk GUI toolkit, and is Python's de facto
standard GUI. Tkinter is included with standard
Linux, Microsoft Windows and Mac OS X
installs of Python. The name Tkinter comes
from Tk interface.
STRFTIME
The strftime() function places bytes into the
array pointed to controlled by the string pointed
to by format.The format string consist of zero or
more conversion specifications and ordinary
characters.
SUMITA ARORA CLASS XI
W3 SCHOOL
WWW.GOOGLE.COM
CODING:-
# importing whole module
root = Tk()
root.title('GYANODAYA')
root.geometry("1600x1000")
root.configure(bg='#80e5ff')
img=Label(image=logo,background="#80e5ff")
img.pack()
def time():
lbl.after(1000, time)
background='#80e5ff',
foreground='#000')
lbl.pack(anchor='center')
background='#80e5ff',
foreground='#000')
txt.pack(pady=100,)
time()
mainloop()
DEFINE CODING:-
1)from tkinter import *
In order to work with a tkinter application, we have to install and import the tkinter
library in our environment. Generally, we import the tkinter library in the
environment by using from tkinter import * command. The significance of "import
*" represents all the functions and built-in modules in the tkinter library.
2) from time import strftime
3) root.title('GYANODAYA')
4)root.geometry("1600x1000")
It is a window size.
img=Label(image=logo,background="#80e5ff")
img.pack()
It is the image .
6)def time():
lbl.config(text=string)
lbl.after(1000, time)
background='#80e5ff',
foreground='#000')
This is style of page in which there is font, background colour ,is present.
9)lbl.pack(anchor='center')
background='#80e5ff',
foreground='#000')
txt.pack(pady=100,)
time()
mainloop()
\