Thanks for your guidance By the way i was learning half of those topic yesterday. Keep going bro.. and once again thanks for guidance 🙂
@coolgirlsharuАй бұрын
Which company are u working as?
@onlyforsingers750718 күн бұрын
You should have cleared the type hinting more clearly Type hinting is nothing but we are specifying what type of data should be passed while calling the function. Example function def myfunc(x,y): return x+b normally you can pass any data type in function while call like : myfunc(1,2) But once we define type hinting it will accept only that data type. example: def myfunc(x:int, y:int): return x+y You Can specify return type also with arrow symbol "->" example: def myfunc(x:int, y:int)->int:
@monikapathekar98672 күн бұрын
Thankyou for the Guidance please share some more videos like this. Python Developer interview questions for 2025
@lalitrathore4540Ай бұрын
good explanation
@anilmohite527Ай бұрын
Please make a video on how to manage timezone in django
@Studywithayaz1Ай бұрын
great video
@yashbanait...7277Ай бұрын
What is *args and **kwargs..??
@rabahalishah512423 күн бұрын
In python, *args and **kwargs allows a function to accept number of arbitrary parameters. These are really helpful when we are not sure about how many arguments user is gonna pass to a function. OR we want to allow our user to enter as many arguments he wants to pass.