Practical File Class 12 IP 2022-23
Practical File Class 12 IP Data Handling Program 1: Create a panda’s series from a dictionary of values and a ndarray '''Python program to create a panda’s series from a dictionary of values and a ndarray''' import pandas as pd import numpy as np…
Random Module in Python Class 11-12 Notes
Random Module in Python Class 11-12 Notes The Random module in Python is an important topic in the Class 11 and Class 12 Computer Science syllabus and is widely used in practical programming. It provides built-in functions to generate random numbers,…
Introduction to Python Module Class 11 Notes Computer Science
Introduction to Python Module Class 11 Computer Science Python modules are a key concept in the Class 11 Computer Science (CBSE) syllabus and are commonly asked in board exams and practical assessments. A Python module is a program file that contains…
Class 11 IP Sample Paper Term 2 Set 3
Class 11 IP Sample Paper Term 2 Set 3 TERM II – 2021-22 Time Duration – 2 hours Maximum Marks : 35 General Instructions:- 1.This question paper contains three parts A,B,C Each part is compulsory . 2.Section A – contains 7 questions each of 2…
Class 11 IP Sample Paper Term 2 Set 2
Class 11 IP Sample Paper Term 2 Set 2 Term-2 Examination 2021-22 Class: 11 Subject: Informatics Practices Subject Code: 065 Duration : 2 hrs. Max Marks : 35 General Instructions • The question paper is divided into 3 sections – A, B and C • Section A,…
Class 11 IP Sample Paper Term 2 Set 1
Class 11 IP Sample Paper Term 2 Set 1 Term-2 Examination 2021-22 Class: 11 Subject: Informatics Practices Subject Code: 065 Maximum Marks: 35/ Time: 2 hours General Instructions ♦ The question paper is divided into 3 sections – A, B and C…
Input a welcome message and display it Python Program
Input a welcome message and display it Python Program welcome_message=input("Enter welcome message : ") print("Hello, ",welcome_message) Output: Enter welcome message : "Welcome to https://cbsepython.in. This is the best place to…
Input a string and determine whether it is a palindrome or not; convert the case of characters in a string
Input a string and determine whether it is a palindrome or not; convert the case of characters in a string # Python Program to check whether string is palindrome or not str=input("Enter a string:") w="" for element in str[::-1]: w =…
Count and display the number of vowels, consonants, uppercase, lowercase characters in string
Count and display the number of vowels, consonants, uppercase, lowercase characters in string # Vowels & Consonants count str = input("Type the string: ") vowel_count=0 consonants_count=0 vowel = set("aeiouAEIOU") for alphabet in str: if…
Compute the greatest common divisor and least common multiple of two integers
Compute the greatest common divisor and least common multiple of two integers # GCD PROGRAM num1 = int(input("Enter 1st number: ")) num2 = int(input("Enter 2nd number: ")) i = 1 while(i <= num1 and i <= num2): if(num1 % i == 0 and num2 % i…