Tutorial 2- Python Basics In Hindi

preview_player
Показать описание
Please donate if you want to support the channel through GPay UPID,
#krish #pythonbusted
Connect with me here:
Рекомендации по теме
Комментарии
Автор

In hindi concepts are getting more clear. Thanks for taking time for us to teach in hindi. Love From Pakistan.

usmanayaz
Автор

Much Awaited Series. Thank you, Krish.

Rwt.aje
Автор

God bless you sir. Kripya hindi me ML and other AI ke videos v daaliye

AshishKumar-mwhv
Автор

thank you sir hindi m tutorial bnane ke liye....

ajay
Автор

Krish watching video is so smooth and we feel confident after watching you....it will be great if in the end everytime you can give exercise so that we can make our own small programs....I am math expert and want to use mathematical skill within coding.

complexreal
Автор

Sir apke videos ek no hai, ap aur video ML ke hindi me dalea, yeah videos apke amrit se km nahi hai

anirbanbtech
Автор

ThankYou Sir for such marvelous and detailed lecture

sankalansen
Автор

Sir I feel that hindi concepts are clear sir

nagrajwellness
Автор

Variables mein Underscores ka dhyaan rakhte h or ye Case Sensitive hote h

pragatisharma
Автор

Please make some videos particularly on scipy library

eduworld_phobia
Автор

Puri playlist complete hone me kitna time lagega? Btw loved your content

jaydattpathak
Автор

sir please make video on SQL or Power BI

Explore-bihar
Автор

Krish can you tell me that if I take the one neuron lifetime offer would I be eligible for the full stack data science dev or it comes separately?

anuvabchakraborty
Автор

Preferred naming convention (PEP 8) var_Name and not varName

hritavsinghsolanki
Автор

Sir hindi m same course ineuron m bj add kre

shyampant
Автор

f string on the place of .format would be better

AbhishekGupta-gxhm
Автор

Bhaiya Hindi me jyada samajh aata hai, English me bahut effort dalna padta hai sunne ke liye, english me sunte sunte man kahi aur chala jata hai concentration nai hota hai.

IlmiMulhid
Автор

a=input("Enter the value of a")
b=input("Enter the value of b")
print("The sum of a with value {c} and b with value {d} is", int(a)+int(b).format(c=a, d=b))

Tried this and got below error -

AttributeError Traceback (most recent call last)
Cell In[17], line 3
1 a=input("Enter the value of a")
2 b=input("Enter the value of b")
----> 3 print("The sum of a with value {c} and b with value {d} is", int(a)+int(b).format(c=a, d=b))

AttributeError: 'int' object has no attribute 'format'

Can you please help resolve this?

SivaNagarajan-uh
Автор

Sir muje kuch bhe nahi Aata Aap muje help kare mai kay karu survat kasi kare

adirajshegane
Автор

While trying to run below mentioned code
name = 'Ram'
name1 = 'Mohan'
print(name + name1)
I am getting error

TypeError Traceback (most recent call last)
Cell In[129], line 3
1 name = 'Ram'
2 name1 = 'Mohan'
----> 3 print(name + name1)

TypeError: 'str' object is not callable

While trying to run below mentioned code
j=10.8-20.3j
print(j.real, j.imag)
I am getting error

TypeError Traceback (most recent call last)
Cell In[123], line 2
1 j=10.8-20.3j
----> 2 print(j.real, j.imag)

TypeError: 'str' object is not callable

Please assist

ShahabuddinParvez