(2024-25 New Syllabus) Practical File for Class 11 Computer Science (083)

11 CS Practical

Practical List for Class 11 Computer Science (083) suggested by CBSE for Session 2024-25.   Programming Language- Python Practical File for Class 11 Computer Science Here are the programs which are suggested by CBSE for Computer Science Practical File class 11. Students should learn and practice  these python programs.    Program 1: Input a welcome … Read more

Digital Clock in Python using Tkinter

Digital Clock in Python using Tkinter Source Code: import time from tkinter import * root = Tk() root.title(“Digital Clock”) root.resizable() lbl = Label(root) lbl.grid(row=0, column=0) def display(): time_get = time.strftime(“%Y/%m/%d\n%I:%M:%S %p”) lbl.config(text=time_get, bg=’blue’, fg=’white’, font=(‘Times New Roman’, 50, ‘bold’)) lbl.after(100, display) display() root.mainloop()   Output:

Copywrite © 2020-2025, CBSE Python,
All Rights Reserved