uk
Feedback
O Level Previous paper

O Level Previous paper

Відкрити в Telegram

https://youtube.com/@Satya806 सभी लोग इस Channel को Subscribe कर लो https://t.me/O_levelpaper Telegram group Quiz 👉https://t.me/o_levelsatya #M4-R5_Paper #M2R5 #O_Level #M3R5_Notes #M1R5Video #PaidClass_O_Level #O_Level_Notes #Satya_Sir

Показати більше
733
Підписники
+124 години
+27 днів
Немає даних30 день
Архів дописів
5-ceil() import math print(math.ceil(3.2)) print(math.ceil(3.5)) print(math.ceil(3.9))

4-floor() import math print(math.floor(3.2)) print(math.floor(3.5)) print(math.floor(3.9))

3- factorial () import math x=math.factorial(5) print("Factorial of 5:",x) y=math.factorial(4) print("Factorial of 4:",y)

2-pow() import math x=math.pow(2,3) print("Result:",x) y=math.pow(5,2) print("Result:",y)

1-Sqrt() import math x=math.sqrt(16) print("Result:",x) y=math.sqrt(14) print("Result:",y)

Different b/w remove and clear Ans- Clear - Delete All Data and Remove Delete specific Data ( जिस को आप करना चाहते हैं उसको ही करेगा

 Removing items from a list using remove() in Python dryFruits = ["Cashew nuts","Dates","Almonds","Raisins"] dryFruits.remove("Raisins") print(dryFruits)

#Remove all the elements from a list in Python dryFruits = ["Cashew nuts","Dates","Almonds","Raisins"] dryFruits.clear() print(dryFruits)

#Merging two lists using extend method in Python list1 = ["Apple","Orange","Mango"] list2 = ["Grape","Strawberry"] list1.extend(list2) print(list1)

numbers = [10,20,30,40,50,60] numbers.insert(0,5) print(numbers)

numbers = [10,20,30,40,50,60] numbers.append(70) print(numbers)

# Finding the length of a list in Python ProgrammingList = ["CSharp","Python","PHP","R"] print(len(ProgrammingList))

Python list of numbers myNumbers = [1,5,9,16,28] print(myNumbers) यह प्रश्न नहीं आयेगा परन्तु आपके list से Data लेने के लिए काम आयेगा ☝️

Previous year आया हुआं यह प्रश्न है ☝️☝️
Previous year आया हुआं यह प्रश्न है ☝️☝️

Dictionary Most important कुछ प्रश्न ऐसा भी आयेगा जिसमें बस Data आपको प्रश्न से Add करना होगा Add items , Change items , Remo
Dictionary Most important कुछ प्रश्न ऐसा भी आयेगा जिसमें बस Data आपको प्रश्न से Add करना होगा Add items , Change items , Remove items ☝️

dict = dict(name = "John", age = 36, country = "Norway") print(dict)

#taking user input no=int(input("Enter any number:")) sum=0 for i in range(1,no+1): print(i,end=" ") #finding sum sum=sum+i print("Total sum:",sum) """ *Output* Enter any number:5 1 2 3 4 5 Total sum: 15 """

cost_price=float(input("Enter cost price:")) selling_price=float(input("Enter selling price:")) if cost_price>selling_price: print("Loss of Rs.",cost_price-selling_price) else: print("Profit of Rs.",selling_price-cost_price) """ *Output* Enter cost price:158 Enter selling price:120 Loss of Rs. 38.0 """

#taking user input p=float(input("Enter principle:")) r=float(input("Enter rate of interest:")) t=float(input("Enter time duration:")) #formula si=(p*r*t)/100 print("Simple Interest:",si) """ *Output* Enter principle:1550 Enter rate of interest:6 Enter time duration:5 Simple Interest: 465.0 """

Print all odd numbers between 50 and 100 using for Loop ( Most important Questions)