Type error --> jab variable ka type wrong hoga . e.g Print (sum(5+"4")) Value error-->. Jab variable ka type sahi ho lekin galat value pass ki gayi ho e.g print(int("one")) Name error: variable declaration ke pahle ki name use ho e.g print (name)
@kunaltandon13 жыл бұрын
Thanks bhai
@procoder96653 жыл бұрын
Thnkx bro
@bibek200210 ай бұрын
while adding int and string there must be type eeror
@mohitwayde2494 жыл бұрын
PermissionError --> jab hum bina permission ke operation perform karte hai tab PermissionError raise hota hai TimeoutError --> jab system function ka time khatam hota hai system level pe tab TimeoutError raise hota hai Thank you for giving us free programming knowledge highly appreciated
@sachinbhardwaj66424 жыл бұрын
Commenting here for appreciating, you have been followed globally too... I am in UK and i am sure apart from me many Indians who still prefer learning in hindi are learning from your videos... Zindabad :)
@CoderzGaming0932 жыл бұрын
IndentationError- jb indentation sahi nhi hoti h to ye error hota h IndexError- jb index jo h wo sahi sequence me nhi likha hota h tb ye error hota h. thanks harry bhai iss amazing course ke liye
@iamvengeance78614 жыл бұрын
ImportError - Ye tab raise hota hai jab module jisko hum import kar rahe hai, woh load karne mai problem hota hai ya phir nahi milta hai. OverflowError - Ye tab raise hota hai jab kisi bhi arithmetic expression ke result ka value itna bada hota hai ki usse represent nahi kiya ja sakta hai. I have completed the task.
@megaempireminecraft93792 жыл бұрын
1: Generator Exist - error taba raise hota hai jaba garbage jama ho jata generator kai end or usai close kartai samaye: 2: EOF - error taba raise hota hai jaba function hit karta hai end-of-file condition without reading its content means uskai content ko bina padhe. 3: Floating point error - Not currently used.
@startjourney86314 жыл бұрын
Sach me itne advance level ki quality teaching/matter wo bhi deshi bhasha me kahi pure KZbin /Google me khi nhi milega/wo bhi free of cost/ek true teacher/Sacha Banda/phir bhi itne km views Kyu hai, /apke is mehnat ko Dil ki gehraiyon se salaam harry Bhai/start se Dekh /write/understand and practice karte aa raha hoon/aur ab ye kh sakta Hoon ki kisi ne bhi yadi honesty me sath is Puri series ko last Tak cover Kar liya to wo ek top level Python programmer banne ka most strong foundation khud me jarur prapt Kar legs/Thanks a lot/God bless you.🙏👌🏼✌️🤗♥️
@deepaktiwari-ry9yo6 жыл бұрын
NameError---yah error tb aata hai. Jb variable ka naam nhi milta hai.. Mtlb variable define nhi hota hai FileNotFoundError----yh error tb aata hai jb aap koi aise file ko open kr rhe ho jo ki.. Nhi hai aapke folder me..
@gaureshshirodkar21363 жыл бұрын
TabError:-ye error tab aata hain jab ham kidhar bhi space or tab ka use karate Indation error ke khandan se hain ye error 😂 Childprocesserror: ye tab aata hain child process ka operation failed hone ke baad aata hain
@SurajSingh-mf3vz6 жыл бұрын
ImportError - jab interpreter ko koi imported module nhi milta hai tab ye Exception raise hota hai. IndentationError - jab kisi program me kahi incorrect indentation hota hai to ye Exception raise hota hai.
@gopaljha79483 жыл бұрын
Over flow - raise when a calcultor exceeds max limit for a numeric type Floating error - raised when a floating point calculation falis
@Princejha-d8j2 жыл бұрын
Hii
@ADITYAKUMAR-sb1xs4 жыл бұрын
OverFlow error -- yeh error hai jo batata hai ki ek arithmatic operation me ek range se zyada kuch nahi kr sakte Assertion error -- jab aap do variables ko compare krte ho to agar wo alag data type k ho aur comparison 'assert' keyword se kiya ho toh exception handle hoga Import error - import error tab aata hai jab tum ek non existing module ko i port kr rahe ho
@adventuresofavalon2477 Жыл бұрын
FileNotFoundError - jab hum wo file to read karne ki koshish karte hai jo exist nahi karti IndexError - jab hum koi bhi iterable ka element access karte hai jo uske range se bahar hai
@AmitYadav-kr6vf4 жыл бұрын
Importerror-raise when import module is not available Indexerror-raise when index range out Thank you sir for this course
@ajaykryadav2 жыл бұрын
एकदम राम्रो छ।
@coding_93222 жыл бұрын
#Example_1-TypeError k = input("Enter number: ") j = input("Enter number: ") if k.isnumeric and j.isnumeric() : print(f"Result is {int(k)+int(j)}") else: raise TypeError("One of the input is not integer") #Example_2-ValueError m = input("Enter what integer you want to print: ") if m.isnumeric(): print(int(m)) else: raise ValueError("Please enter correct type of value")
@codea74802 жыл бұрын
Buffer error - agr koi operation python perform nhi kr pata h to usse buffer error kehte h ModuleNotFoundError- agr koi module aapke device me available ni h to aap iss error ka use kr skte ho kuch display krane k liye.
@rajatshukla26052 жыл бұрын
exception StopIteration: ye exception built in fn next() ya fir kisi iterator generate karta hain. Ye Exception tab generate hota hain jab iterator ke pass aur items generate karne ko nahi hote hain. Is exception ka jo object hota hain vo ek parameter leta hain joki by default none hota hain. exception TypeError: ye exception tab raise hota hain jab koi operation ya fn unexpected type ke object par apply kardiya jaata hain. iske saat ki associated value ek string hoti hain joki detail me mismatch ke baare me batati hain. ye exception user tab raise karta hain agar uska fn expected value ke bajayae kisi aur pe lagaya jaata hain.
@sohelmalek49912 жыл бұрын
1)exception Exception : saare builtin exception iska bacche hai,user deined exception bhi ishiki santaan hai 2)exception ArithmeticError : saare arithmetic operations wale error ka baap, zerodivisionerror,floatingpointerror,overflowerror isk bacche hai
@shujajilani74963 жыл бұрын
ImportError--Raised when the import statement has troubles trying to load a module. Also raised when the “from list” in from ... import has a name that cannot be found TabError--Raised when indentation contains an inconsistent use of tabs and spaces. This is a subclass of IndentationError.
@AyushGaming-uq7ci5 жыл бұрын
Typeerror---------->>>jab hm agl type ke data type ke beech action perform krte h Syntexerror--------->>>jb hm program ke syntex me glti krte h
@rohanbeast33813 жыл бұрын
Value error --> Jab kisi function ka argument ka type to sahi ho, lekin value galat ho. eg. str(a) FileExistError --> Jab ham kisi esi file ko banane ki koshish kare jo pehle se hi available hai. eg. with open("Text.txt", "w") as f: # Text.txt is already there r = f.write("Code with haris")
@vijaygovindani63744 жыл бұрын
Lookup error: mapping ke doran galat key ka use karna IsADirectory Error: kisi dir pr koi file ka attribute lgakr run krna
@RanveerAllhabadia3 жыл бұрын
Indentation Error-jab galat indentation dete hai tab yeh error aati hai. Recursion Error-jab interpreter detect karta hai ki recursion ki depth maximum se zyada ho jati hai tab yeh error show hoti hai.
@nooneneedstoknow73 жыл бұрын
Typeerror: Hum agar do different data types like str and int ko concenate karne ki koshish kre toh ata hai Nameerror : Jab name ko bina define kiye hum print karna chahe toh ata hai Plz suggest if something is wrong
@ShubhamGupta-qk9uq5 жыл бұрын
#Love u bhai dil dedo frands UnboundLocalError - yeh tb ata ha jb koi function ya variable ko call krta ha pr vo variable ya function phle code m define nhi hua hota Runtime Error - yeh tb ata ha jb error ki vjah unknown hoti ha
@Arpit_Maurya3 жыл бұрын
1- ZeroDivisionError Raised when the second argument of a division or modulo operation is zero. The associated value is a string indicating the type of the operands and the operation. 2- ypeError Raised when an operation or function is applied to an object of inappropriate type. The associated value is a string giving details about the type mismatch.
@inzamamulhaque12472 жыл бұрын
exception RecursionError: Ye raise hota hain jab recursion depth exceed ho jati hain Tab error:Raise hoti hain jab tab ka inconsostent use hota hain
@mr.anonymousrevelader15363 жыл бұрын
1. ModuleNotFoundError Agar python main module found nahi hota to execption raise hota hai 2. NameError Agar python main variable ka nam ya variable found nahi hota to yeh exception raise hota hai
@lyricalvideos27484 жыл бұрын
TypeError -- occurs on applying the function to an object of an incorrect type TabError -- occurs when tabs and spaces are mixed in an indentaiton
@mahir.gautam3 жыл бұрын
ImportError:- yeh error tbh aata hai jab hamne jo import kiyaa ho module uska ek toh naam glt ho yaa installed na ho system me KeyError:- yeh error tbh aata jab dictionary me key present na ho Task completed harry bhai❤️
@udaygupta67242 жыл бұрын
IndexError - Iska use jab kiya jata hai jab humhara koi bhi input integer out of range jaa rha hota hai KeyError - Iska use jab kiya jata hai jab kabhi bhi humhara searched key dictationary me nhi hoti hai
@tanmaydaga72044 жыл бұрын
KeyboardInterrupt------> Jab user ctrc ya delete key press karta hai console me Modulenotfound---->Jab script me de gayi module python ko nahi milti
@sonumahajan68214 жыл бұрын
Keyboard interrepted error - when user press any key like ctrl c or delete while program is runing. Memory error- when drive has not enough space to execute the program.
@felon_loser4 жыл бұрын
Recursion Error: Jab maximum recursion depth reach hoti hai. When I was practicing recursions, iski shakal itni baar dekhi bhai. Syntax Error: Syntactical mistakes. Yeh kabhi nhi bhul payenge.
@SaniyaKhan-kl7bx4 жыл бұрын
ModuleNotFoundError : yeh importError ka subclass hai, jab module locate nahi ho sakta tab import dawaara raised hota hai. yeh tab bhi raised hota jab koi sys.module mai none paya jata hai. RecursionError : yeh exception RunTimeError sai derived h,yeh tb raised hota hai jab recurison ki depth adhik ho jati hai jo ki interpreter detect krta hai
@ashokgarg86704 жыл бұрын
FileExistsError --> Yeh error tab ati hai jab hum ek file ya directory banate hai jo already bani hui hoti hai. FileNotFoundError --> Yeh tab ati hai jab aap koi file ya directory ko request krte ho par vo hoti nhi hai ya phir moujood na ho.
@tonisha13324 жыл бұрын
You are doing a great work
@ashokgarg86704 жыл бұрын
Mast video hai bhai !
@Aswin_Dev_3 жыл бұрын
Best python tutorial series I have learned a lot, thanks sir
@AnwarKhan-on5sb3 жыл бұрын
IndexError -> jab specified index availble index size se zyada ho e.g: list = [1,3,4,4,4,4,] print(list[9]) SyntaxError -> jab code thik se na likha ho. e.g: print ko prnit likhna
@moinakhere Жыл бұрын
OverFlowError-- jab numeric operation ka value limit par kr jata hai. KaeyboardInerrupt-- Jab program chalte time keyboard k Delete ya Ecs button pe click ho jata hai.
@deveshdubey67764 жыл бұрын
BufferError-- jb buffer se related problems handel na ho sake KeyError-- jb kisi key ki mapping (dictionary) krte waqt vo key given set me na present ho
@technophiles99082 жыл бұрын
#Task 1.AttributeError...........Raised when attribute assignment or reference fails. 2.EOFError.........Raised when the input() function hits end-of-file condition.
@suheelhilal1614 Жыл бұрын
IndexError : Ye exception tab occur hoti hai jab hum kissi list se woh index ko access krna chahta hai jtne usmain element na ho RuntimeError : ye exception tab occur hoti hai jab koi exception occur hoti hai ja koi exceptionaise occur ho jo builtin exceptions mai specifically na ho aur ye ek argument b leta hai jo ye indicate hai ki kya actually error hai
@harshaly.y51694 жыл бұрын
keyboard interrupt -> jab program ki execution ke dauran koi keyboard ki key press ho jae jaise ctrl+c press ho jae toh ye excetion raise hota hai aur mainly console main hi yeh error aata hai Type Error -> jab type casting na ho pae jaise int('n')
@thexurde49734 жыл бұрын
OverflowError : Raised when the result of an arithmetic operation is too large to be represented SyntaxError : Raised when the parser encounters a syntax error.
@aagazkhan15454 жыл бұрын
Deepest respect from the bottom of my heart. Value error() & Assertion error() while True: try: number1 = int(input('Number1: ')) assert 0
@adarshsahu46382 жыл бұрын
keyerror- jab koi key kisi dictionary me na ho lekin uska use ho rha ho keyboardinterrupt - raise hota jab ham delete key or ctrl c, ctrl z ,ctrl y etc press krte
@aasthahimthani74032 жыл бұрын
OverFlowError: jab bhi koi value bahut large hoti ha tab overflowerror raise hota hai example: i=int(input("Enter your number")) if i>100000000000000000000: raise OverflowError("number is too large") print("No error") NameError: jab bhi koi undefined variable,list or dictionary ko print ya kahi bhi use karte hai to NameError raise hota hai
@Abhishek-ji6qj3 жыл бұрын
You make all the concepts of python very interesting so thank you so much
@anshulgandhi17075 жыл бұрын
KeyboardInterrupt: when the user stops the program using ctrl+c StopIteration: when an iterator object is exhausted and still a next() is called over it. for loop in python is implemented to take care of this exception when a list or the range or anything that the program is supposed to be iterated over ends unlike while where the termination condition has to be specified to avoid running into an infinite loop.
@ishansrivastava6744 жыл бұрын
args : The tuple of arguments given to the exception constructor. Some built-in exceptions (like OSError) expect a certain number of arguments and assign a special meaning to the elements of this tuple, while others are usually called only with a single string giving an error message. ImportError : Raised when the import statement has troubles trying to load a module. Also raised when the “from list” in from ... import has a name that cannot be found.
@mehboobmaniyar18902 жыл бұрын
My friend learnt programming by watching your videos now he is working as a backend developer
@aryamahima33 жыл бұрын
Who says that you don’t give right examples!!! You are so good at giving examples Harry.....
@siddheshpanajkar66010 ай бұрын
Task -> Write about 2 built-in exception errors Overflowerror -> jab koi arithmetic operator ka result bada hota hai dikhane ke liye Recursionerror -> jab maximum recursion depth tak pohochte hai #codewithharry
@bugsfounder3 жыл бұрын
# FileExistsError --> agar aap ek aisa file ya folder banane ki kosis karenge jo already bani hui ho to ye error raise hota hai # NotADirectoryError --> agar aap kisi ase file ko access karne ki kosis karte ho jo maujood na ho to ye error raise hota hai like agar aap use karte ho os.listdir()...
@mdinamulharoon10335 жыл бұрын
MemoryError -> Jab ek operation ko execute karne me memory sari khatam hojati hai RecursionError -> Jab interpreter ko realise hota hai ki recursion the depth exceed ho Chuka hai maximum limit se
@sarthakkhare46004 жыл бұрын
ModuleNotFound- Jb ham kisi aise module ka naam likhte hai jo python main hai hi nhi toh ye error occur hota hai. EOF: jb hm python main kisi jagah brackets ko close nhi krte toh as a SyntaxError: EOF while parsing aata hai
@bhoyasnehal5 жыл бұрын
overflowerror :-Arithmetic operation bahut bada hota he or intergers memory me nahi leta he tab raise hoti he recursionerror:-jab interpreter jyada recursion ka code likh dete he tab raise hoti he
@dhonddevameya23622 жыл бұрын
RecursionError : Jab recursion ki maximum depth cross hoti hai tab yeh exception aata hai. IndentationError : Indent me gadbad hui toh yeh exception aata hai
@PuppyHaven-1174 жыл бұрын
KeyError -> jab dictionary mein humari maangi hui key nhi hoti IndentationError -> Jab hum kisi jagah par bewajah space chod dete hain ya fir jahan par space chahiye hota hai vahan par nhi dete
@ankursahu95055 жыл бұрын
Overflow : jab kisi arithmetic operation ki value bohot zyada badi a rhi ho ki represent na kar paen Runtime:jab koi error kisi particular category mein na a paye
@rakshitraj35503 жыл бұрын
exception AssertionError - जब एक मुखर बयान विफल हो जाता है तो उठाया जाता है। # Handling it manually Example :- try: x = 1 y = 0 assert y != 0, "Invalid Operation" print(x / y) # the errror_message provided by the user gets printed except AssertionError as msg: print(msg) exception AttributeError - एक विशेषता संदर्भ (विशेषता संदर्भ देखें) या असाइनमेंट विफल होने पर उठाया गया। (जब कोई ऑब्जेक्ट विशेषता संदर्भ या विशेषता असाइनमेंट का समर्थन नहीं करता है, तो टाइप एरर उठाया जाता है।) Example:- # Python program to demonstrate # AttributeError X = 10 # Raises an AttributeError X.append(6)
@rehanahmad66993 жыл бұрын
1. Arithmetic error- jisme error arithmetically ayega jaise divisible by zero wagera. 2. Key error - jisme dictionary m key ki value nhi milegi.
@ayushraj99382 жыл бұрын
I|O read error -- It means that your computer is unable to read from where the information is. 😊 UnboundLocalError -- when u try to assign a value to a local variable before it has been declared. TQ harrybhai for itta aacha course. 😁
@codinglover14773 жыл бұрын
# Task - Write about 2 built in exception # 1. ModuleNotFoundError --> yeah Exception tabh raise hoti jab hum koi module jo maujud nahi hai woh import kare # 2. TabError --> yeah Exception tab raise hoti hai jab hum tabs ya phir spaces sahi se nahi dete
@vishant8984 жыл бұрын
unboundLocalError - In below example x ,y typecast as a float if we give input as a string then unboundLocalError occured for more info run this program def sum(): try: x=float(input("enter a value:")) y=float(input("enter a value:")) c=x/y print(c) except Exception as r: if x==20.5 and y==56.3: raise FloatingPointError("Entered value is float so cant divisible") sum()
@libinTom2 жыл бұрын
Thanks millions Harry.
@felon_loser4 жыл бұрын
KeyboardInterrupt --> jab user delete ya ctrl c dabata hai, to yeh raise hota hai. does not close the interpreter GeneratorExit --> Jab generator ya coroutine ko close karne ke baad call karte hain.
@naazidivo80104 жыл бұрын
sir your are the best teacher
@coderrishav4 жыл бұрын
Criminal 😂, Don of programming world
@multicomlife33013 жыл бұрын
OverflowError- ye error tab ata hay jab ap ka arthemitic operation kah operation bohot bara ho represent karnay kah liye. RecursionError- ye error tab ata hay jab ap ka interpreter detect karay zaada recursions depth ko
@ManjotSingh-sf5qn2 жыл бұрын
#lookuperror - agr hum ek list jisme 4 element ha uska 5th,6th,etc element print krne ki koshish kre tab lookuperror ko raise kiya ja sakta h. #importerror - jab ek module ko import na kiya ja sake
@sanasingh2385 Жыл бұрын
EOF Error- jab file ke end tak pahuch jate hai aur age kuch bhi read karne ke liye nahi hota then we use EOF error generally in file handling Syntax error-jab bhi kisi bhi programming language ke writing rules na follow ho
@mauryaashish17414 жыл бұрын
EOF Error : Occurs when the input function reaches to end of the file without reading any input Attribute Error: when a required attribute is not there.
@arendra76683 жыл бұрын
Bro of course u are the best programming tutor🤓🤓
@arindomghosh72363 жыл бұрын
Key Error --> It is raised when a invalid or undefined key or a key which is not present in a dictionary is called. Run Time Error --> It is raised when a error which actually does fall in any other error categories.
@RahulSharma-bo5jc4 жыл бұрын
TabError --> Jab tab aur spaces ka sahi tarah se use na kiya gya ho , Yeh exception raise hoti hai! FileExistsError --> Jab Hum koi file ya directory create krte hai jis name se already file/directory exist krti hai, This exception is raised!
@samruddhiselukar4 жыл бұрын
1. IndexError = jab available index se jyaada bada index likha jaye 2. KeyboardInturrupt error = jab hum koi running program ko ctrl+c ya ctrl+z se rokne ki koshish karte hai
@_Spread_Positivity_2 жыл бұрын
Amazing video thanks harry
@amrittiwari37624 жыл бұрын
TimedoutError - jab program bahut jada time leleta ha RecursionError - jab recursion limit se jada bar chalega
@Raj_Patel216 жыл бұрын
assert(condition) - jab condition false ho to exception raise hogi KeyError - when key is not found in dictionary.
@sarv4265 Жыл бұрын
Exception - Error jo users define kar kaste hain aur ye non build-in errors ko raise karne ke liye use hota hai. LookupError - ye errors ki base class hoti jo tab ata hai jab koi invalid index ya key kisi mapping ya sequence ke upar lgaya jata hai..... IndexError, KeyError.... ise hum codescs.lookup() se raise karsakte hai.
@shivanshutyagi834 жыл бұрын
IndexError->ye tab aata hai jab index list/tuple ki range se bahar ho jaye Example:- l=[1,2,3,4,5] print(l[9]) TypeError->ye tab aata hai jab index integer ya slices na hoke kuch aur ho Example:- l=[1,2,3,4,5] print(l["0"])
@modisonsbusiness55172 жыл бұрын
Love you Bhai❣️❣️❣️😚😚😍💐 big fan From Haryana Gurugram
@NdzControlsystem4 жыл бұрын
SyntaxError = jab programme Ka syntax think nahi hota hai. RecursionError = jab bahut zayada recursion ho jaate hai
@ravipandya43294 жыл бұрын
ArithmeticError: isme different types ke errors hai like: OverflowError, ZeroDivisionError, FloatingPointError. BufferError: raise me buffer related operation work nhi karte.
@uniqueghost22943 жыл бұрын
RecursionError: when maximum recursion depth is exceeded i.e. recursion happens continuously and goes in infinite there is no exit condition in recursion. StopIteration: this error is given by built-in function next() and an iterator’s __next__() method to say that there are no further items produced by the iterator. i.e. further items are not present to iterate above
@siddheshshinde8483 жыл бұрын
Hindi me likhana he didi🖐🏻
@jigarsiddhpura2 жыл бұрын
KeyboardInterrupt : When program is interrupted by pressing CTRL+C or DEL to stop it RecursionError : It is raised when max recursion depth is exceeded
@ComradeWeredog Жыл бұрын
NameError - Can be raised in OOPs if the person tries to access an instance variable that does not exist EOFerror - It can be raised if the input was blank due to misclicks...
@sarojbhati70063 жыл бұрын
Liked the playlist
@mohammadnoorayaz80292 жыл бұрын
module not found error: ye error tab raise karta hai jab koi module download nahi hota ya milta nahi hai key error: ye error tab raise hota hai jab dictionary me koi aise key access karne ki koshish karte hai jo dictionary me hoti hi nahi hai example:- dict = {"harry":40} print(dict["noor"]) index error: tab aata hai jab ham aisi object to indexable hai jaise string, list ki limit se zyada data process karne ki koshish karte hai example : color = ["red", "blue", "green" ] print(color[4])
@mukeshnarayan91014 жыл бұрын
ImportError- jab kisi module ko import karne me koi trouble aata hai, ya phir kisi from list me wo module name define na ho. NameError- jab koi local ya global name define nahi rehta hai
@ssv61324 жыл бұрын
StopIteration error -- yeh koi bhi generator ah coroutine use krte waqt next() ya kisi iterator ki __next__() method se raise hoti hai jo batati hai ki aage koi items nhi hai StopAsyncIteration -- yeh kisi bhi asynchronous iterator object ki __anext__() method se raise hoti hai , iteration ko stop krne k liye
@feynman86924 жыл бұрын
BHAI TUM MAHAAN AADMI HO ... BHAGWAAN TUMHARA BHALA KARE ... YRR FREE ME TOH AAJKAL SAMOSE BHI NHI MILTE TUM TOH YAHA PYTHON SIKHA KE MEHNAT SE PAISE KAMAANE KA MAUKA DE RAHE HO . MEREKO TOH SKILL MIL GAYI TUMHARI WAJAH SE AND MERI USP BADH GAYI MARKET ME ... DIL SE SHUKRIYA BHAI ...
@ayanavabanerjee13803 жыл бұрын
KeyError: ye wala error raise hota hai kyuki agr ek mapping key ek keys k set me se nahi mila to . AssertionError: ye wala error tab raise hota hay jab assert statement fail karta hy.
@mainakmukherjee34443 жыл бұрын
IndexError -- jab koi sequence type ka variable(Array) ka us index array ke andar hi nehi hai..tab bhi print karna chahta hu ..tab Like, A=[1,2,3] print(A[3])
@gautamgoswami9510 Жыл бұрын
UnboundLocalError- ye error tb hoga jb local variable define krne se phle hi use kr le NotImplementedError- jb abstract class ko kisi bhi method ko override krne ke inhered class ki jrurt ho
@Kyamaibolu6 жыл бұрын
Tnx bhai g
@saugatmohanty96753 жыл бұрын
recursionerror --> recursion karte bakt agar recursion itna depth me ho ki stack memory fill up ho jae stopiterationerror --> generators/iterators use karrte bakt agar last element tak reach kar jae aur next element access karne ki try kare __next__() method se , toh ye error show karega