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 أيام
أرشيف المشاركات
Repost from O Level Previous paper
5-ceil()
import math
print(math.ceil(3.2))
print(math.ceil(3.5))
print(math.ceil(3.9))
Repost from O Level Previous paper
4-floor()
import math
print(math.floor(3.2))
print(math.floor(3.5))
print(math.floor(3.9))
Repost from O Level Previous paper
3- factorial ()
import math
x=math.factorial(5)
print("Factorial of 5:",x)
y=math.factorial(4)
print("Factorial of 4:",y)
Repost from O Level Previous paper
2-pow()
import math x=math.pow(2,3) print("Result:",x) y=math.pow(5,2) print("Result:",y)
Repost from O Level Previous paper
1-Sqrt()
import math
x=math.sqrt(16)
print("Result:",x)
y=math.sqrt(14)
print("Result:",y)
Repost from O Level Previous paper
Different b/w remove and clear
Ans- Clear - Delete All Data and Remove
Delete specific Data ( जिस को आप करना चाहते हैं उसको ही करेगा
Repost from O Level Previous paper
Removing items from a list using remove() in Python
dryFruits = ["Cashew nuts","Dates","Almonds","Raisins"] dryFruits.remove("Raisins") print(dryFruits)
Repost from O Level Previous paper
#Remove all the elements from a list in Python
dryFruits = ["Cashew nuts","Dates","Almonds","Raisins"] dryFruits.clear() print(dryFruits)
Repost from O Level Previous paper
#Merging two lists using extend method in Python
list1 = ["Apple","Orange","Mango"] list2 = ["Grape","Strawberry"] list1.extend(list2) print(list1)
Repost from O Level Previous paper
# Finding the length of a list in Python
ProgrammingList = ["CSharp","Python","PHP","R"]
print(len(ProgrammingList))
Repost from O Level Previous paper
Python list of numbers
myNumbers = [1,5,9,16,28]
print(myNumbers)
यह प्रश्न नहीं आयेगा परन्तु आपके list से Data लेने के लिए काम आयेगा ☝️
Repost from O Level Previous paper
Dictionary Most important
कुछ प्रश्न ऐसा भी आयेगा जिसमें बस Data आपको प्रश्न से Add करना होगा
Add items , Change items , Remove items ☝️
Repost from O Level Previous paper
dict = dict(name = "John", age = 36, country = "Norway")
print(dict)
Repost from O Level Previous paper
#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
"""
Repost from O Level Previous paper
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
"""
Repost from O Level Previous paper
#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
"""
Repost from O Level Previous paper
Print all odd numbers between 50 and 100 using for Loop
( Most important Questions)
متاح الآن! بحث تيليغرام 2025 — أهم رؤى العام 
