Python while loop exercises for CBSE Computer Science
Python while loop exercises for CBSE Computer Science 1- Python program to print First 10 Even numbers using while loop num = 2 while(num<=20): print(num) num = num + 2…
CS-IT-IP-AI and Data Science Notes, QNA for Class 9 to 12
CBSE Computer Science with Python class 12
Python while loop exercises for CBSE Computer Science 1- Python program to print First 10 Even numbers using while loop num = 2 while(num<=20): print(num) num = num + 2…
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…
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 File Handling Notes for class 12 Data File Handling in Python Data maintained inside the files is termed as persistent data. It means it is permanent in nature. Python…
Working with Functions in Python Class 12 Here you will learn about the functions in Python, Types of Functions in Python, How to create a function in Python, how function…
JUMP STATEMENTS Looping allows a user to program and repeat tasks efficiently. In certain situations, when some particular condition occurs, a user may want to exit from a loop (come…
For loop in Python The for statement is used to iterate/repeat itself over a range of values or a sequence. The for loop is executed for each of these items…
While Loop In Python: A while loop in Python is used to execute a block of code repeatedly until a certain condition is met. Here is the basic syntax of…
Decision Making in Python for Beginners (CBSE Class 11-12) Introduction to Decision Making in Python Welcome, CBSE Class 11-12 students! Decision making in Python is like giving your computer a…
CBSE Class 11 Computer Science (083) Sample Paper General Instructions: 1- This question paper contains two parts A and B. Each part is compulsory. 2- Part-A has 2 sections: a)…