Number System Converter- Python Project for CBSE Class 11

Number System Converter- Python Project Source Code: # -*- coding: utf-8 -*- “”” @author: cbsepython “”” while 1>0: inp=int(input(“enter the number:”)) org=int(input(“enter it base:”)) to=int(input(“enter the base in which it is to be converted:”)) print(“\n”) ######################################################################@ if to==2 or to==8 or to==16 or to==10: out1=0 power=0 while inp>0: out1+=org**power*(inp%10) inp//=10 power+=1 print(“after conversion the result … Read more

CBSE Computer Science Practical Question Paper Sample

Computer Science Practical Question Paper Sample A.I.S.S.C.E. Practical Examination Subject: Computer Science (083) Time 3 Hrs/MM:30   SET- 1 1- Write a program to input a list and interchange first with last, second with second last …. Print the list in reverse order.(7 marks) 2- Write a program to create interface with MySQL database and … Read more

What is MongoDB?

What is MongoDB? MongoDB is a cross-platform, simple document-oriented NoSQL database that provides high performance, high availability and easy scalability. It is used for high volume data storage.   It is a platform-independent interface which means that it can run on any platform like Windows, Linux, Unix, etc. It was designed to work with community servers. … Read more

Operations on text file

Python Data File Handling operations on text file A text file consists of a sequence of lines. A line is a sequence of characters, stored on permanent storage. In a text file, each line is terminated by a special character, known as End Of Line (EOL). Text file can be created using any text editor. … Read more

What is Django framework?

What is Django framework? Django is a high-level Python web framework that enhances fast development and clean and simple design. It is a framework for web application development. Django helps eliminate repetitive tasks by making the development process an easy and time-saving experience source. It took the name of the famous guitarist Django Reinhardt. It … Read more

CBSE Computer Science Class 12 Unit-2: Computer Networks

Unit-2: Computer Networks What is Computer Network? A computer network is a group of two or more interconnected computer systems, which share their data to each other. You can establish a computer network using either cable or wireless media.   Advantages of Computer Network: Resource Sharing Improved communication Reduced communication cost Centered storage   Elementary … Read more

What is tkinter in python

What is tkinter in python? Tkinter is a standard GUI (Graphical User Interface) library for Python. It is a built-in module that comes with Python and allows programmers to create windows, dialogs, buttons, menus, and other GUI elements for their Python applications. Tkinter is based on the Tcl/Tk GUI toolkit, which was developed in the … Read more

Using of Datetime Library in python Class 11-12 Notes

Using of Datetime Library in python Class 11-12 Notes As python provides a large set of library, it also contains datetime library. This library displays the date in YYYY-MM-DD format. Python datetime module handles the extraction and formatting of date and time variables. All the attributes can be accessed using dot(.) operator with the date … Read more

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