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
显示更多734
订阅者
无数据24 小时
+17 天
+530 天
帖子存档
Python -22Aug
👉 keywords
👉File
👉text mode
👉 Binary Mode
👉readlines()
👉 readline()
👉Write()
👉 NumPy
👉Windows install numpy code
👉list
👉 Tuple
👉 Dictionary
👉set
👉valid variable
👉list mai Slicing of index
👉 Operator
👉 built-in function
👉 membership in
👉 identify is
M3-R5 Papers
✡✡✡✡✡✡
👉Surendra Singh👈
के अनुसार जिसका पेपर बचा है उसको
क्या पढ़ना चाहिए 👇👇👇👇👇👇
👉Bahut easy h
👉Paper
👉 File handling yaad kr lo
👉Surendra Singh👈
🫵 धन्यवाद आपका प्रश्न भेजने के लिए 🫵
👉 Cursor ki current position batata h
👉Tell kyaa return karta h
👉 all [1,2,0,4]
✡O Level previous Paper group ✡
👉Satya sir 👈
#Python
#22Aug
आप देख सकते हैं कि आज बहुत सा प्रश्न पहले वाला Repeat हो रहा है ☝️☝️☝️
0.1+0.2==0.3
False ✅✅✅
0.3==0.3
True ✅✅✅
इस प्रकार के प्रश्न आप गलत मत करो 🙅♂🙅♂
👉नहीं आता है तो आप पुछ सकते हैं👈
Note- जिसका 1st Shift का पेपर हो गया है
जल्दी से जल्दी प्रश्न भेजे
👉7068236218👈
👉NumPy Python
👉 Full form -Numerical Python
👉Open Source
👉Cross Platform
👉इसका प्रयोग
✡Data Analysis & Scientific Computing
👉कब आया
2005
खोजकर्ता 👉Travis Oliphant
याद करने का तरीका elephant 🐘
किसमे लिखा गया है 👉C language/C++
👉 Install package Code
👉pip install numpy👈
👉 Array Object को NumPy में ndarray कहते हैं
@o_levelsatya
👉M3-R5 Shot Notes 👈
👉O Level previous Paper group👈
#Python
👉Extension - .Py
👉 #Comment -
👉Single line -#
👉Multiple line - " " ". " " "
👉Discovery of python - Guido Van Rossum
#Python_Indentation
यह कोड लाइन की शुरुआत में स्पेस दिखता है
पाइथन code को एक ब्रैकेट अंकित करने के लिए Indentation का प्रयोग किया जाता है
#python_Varibles_Rules✡
1- कोई भी Variable नंबर से शुरू नहीं होगा
Ex-2my_var="a". 🙅♂🙅♂🙅♂🙅♂🙅♂🙅♂
2-कोई भी Variable में बीच में Space नहीं होगा
Ex- my var="a". 🙅♂🙅♂🙅♂🙅♂🙅♂🙅♂🙅♂
3-वेरिएबल में अंडर स्कोर को छोड़कर बाकी किसी भी स्पेशल करैक्टर का प्रयोग नहीं होगा
Ex-@my_var="a". 🙅♂🙅♂🙅♂🙅♂🙅♂🙅♂
4-अंडरस्कोर का प्रयोग कर सकते हैं
Ex- var_my="a"✅✅✅
5-बीच या अन्तिम में Number का प्रयोग कर सकते हैं
Ex-var_my5="a" ✅✅✅✅
#Built_in_Data_Types
Text type 👉str
Ex-x="Hello"
Numeric Types 👉int,float, Complex
Ex int-
X=10
👉Float
Ex-x=2.5
👉Complex
1j
Sequence Types 👉 list, Tuple, Range
👉List
Ex-X=["apple","banana","cherry"]
👉Tuple
X=("apple","banana","cherry")
👉Range
X=range(6)
Mapping Typing 👉 Dictionary
👉Dict
X={"name:"John","age":36}
Set type 👉 Set, Fronzenset
X={"apple","banana"}
Note- different b/w set and Dictionary
👉 :
👉Fronzenst
X=Fronzenst ({"apple","banana","cherry"})
Boolean Types 👉 bool
👉bool
Ex- X=True
Binary Types 👉 bytes, byte array,
memoryview
👉bytes
Ex- X=b"Hello"
👉bytearray
X=by tearray(5)
👉memoryview
X=memoryview (bytes(5))
Most important Questions
#ConCatenation
Add String to String
Add int to int
यह समान डाटा टाइप को जोड़ने का काम करता है
#Type Conversion
Ex-num=18
Print (Float (18))
Output -18.0✅✅✅
Note-यह पहले Interger था अब इसको हमने
Float में बदल दिया है
👉Most important
👉5/2 कितनी बार जा सकता है
Single Floor हमेशा Float होता है यानी दशमलव के बाद की value लिखते हैं
2.5
👉5//2 कितनी बार जा सकता है
Double Floor हमेशा Interger होता है यानी दशमलव के बाद की value नहीं लिखते हैं
2
👉5%2
1 शेषफल
👉5**2
✡5 ki Power 2
25✅✅✅✅
👉Python में दो प्रकार के loops होते हैं:
✡for loop
✡while loop
👉for loop को इस प्रकार का लिखा जाता है:
for i in sequence:
statement1
statement2
statement3
👉While loop को इस प्रकार का लिखा जाता है:
while condition:
statement1
statement2
statement3
Break Keyword :- Jab Hame kisi statement ko break karna hota hai to ham break keyword in hindi ka use karte hai.
Ex-i = 1
while i<=10:
if i == 5:
break
print(i)
i = i + 1
#Output
1
2
3
4
👉Continue Keyword :- Jab Hame kisi statement ko continue karna hota hai to ham continue keyword in hindi ka use karte hai.
Ex-for i in range(1,11):
if i == 5:
continue
print(i)
Note-इसमे हमने दिया है कि i==5
इस 5 को छोड़कर बाकी आगे प्रिन्ट करेगा
Output 👇👇👇👇
1
2
3
4
6
7
8
9
10
👉Type of functions 👈
👉 In-built function
👉 Module Function
👉 User Defined Function
👉 Lambda function
👉 Recursion function
👉Membership Operator
In,not in
इसको समझने के लिए आप यह समझ लो कि
आप ने Jio Members लिया है
सबसे पहले आप Membership लिया है तो
आप इसमें in (जा) सकते हो
इसी प्रकार in Operator से हम जान
सकते हैं कौन सा सा Data है या नहीं
Ex- str1="o Level"
"o" in str1
ऊपर Strings में o है इसलिए
True ✅✅✅
नहीं है तो false
Note-not in इसका बिपरीत (opposite) होता है
#Identify Operators
This Operator is Comparing two objects are same or not( दोनों Memory Address पता करता है फिर उसकी तुलना करता है)
is and is not
Ex-
a=10
b=10
a=12111 -memory address
b=12111- memory address
print (a is b)
👉True
✡range Function
Syntax ()
range(Start, Stop, Stepsize)
👉Most important Questions
div mod(a,b)
div mod (10.5,5)
div mod. (2.4,1.2)
Solution-
(a//b,a%b)
(10.5//5,10.5%5). (2.4//1.2,2.4%1.2)
(2.0,0.5). (2,0)
Answer -(2.0,0.5)
(2,0)
any() function 👉 this function return to if anyone elements of iterable is true if irritable returns false
all() function 👉 this function return true if elements of the iterable are true or iterable is empty
👉Satya Sir👈
👉Join-@o_levelsatya
1000 Python MCQ (Multiple Choice Questions) - Sanfoundry
https://www.sanfoundry.com/1000-python-questions-answers/
现已上线!2025 年 Telegram 研究 — 年度关键洞察 
