Skip to main content

Posts

Python Strings in hindi (Part -6)

Subscribe * indicates required Email Address *                                                 String in Python Python mai hm string ka use krte hai text information ko store krne ke liye jaise ki name, jaisa ki hm jante hai Python mai character nhi hota python mai character ko string of length one mana jata hai. String ko single quotation mai bhi represent kr skte hai aur double quotation mai bhi represent kr skte hai. Let's see an example..    print('hey') print("hey") agar hame multiline string ko assign krna hai to ham wo bhi kr skte hai example: a =  "" "hey, this is rishabh gupta and I will teach you python from scratch  enjoy the blog" "" print (a) output hey, this is rishabh gupta and I will teach you python from scratch  enjoy the blog Python ki string ek array jaise hoti ha...

Python Input and Escape sequence character in hindi (Part -5)

Subscribe * indicates required Email Address *                                                     Input in Python Python mai hm input le skte hai input function ki help se , input lena mtlb hm saamne se value denge num1 or num2 ki. num1= input ( "enter a number:" ) num2= input ( "enter a number:" ) print ( int (num1)+ int (num2)) output enter a number:56 enter a number:85 141 to hm simply input function ka use krke input le skte hai , lekin ap yaha dekh skte hai ki hmne print statement mai kya print karaya hai , hamne int(num1) + int(num2) likha hai iska mtlb hamne type cast kiya hai to hm type cast kyo kr rahe hai jbki hamne dono value interger value li hai to answer hai jb bhi ham input function ka use krke input lete hai to jo value ham input le rahe hai wo value string mai store hoti hai na k...

Python Operation and type conversion in hindi (Part -4)

Subscribe * indicates required Email Address *                                     Python  (Addition, Substraction, Multiplication, Division) Pichhle post mai hamne discuss kiya tha Python variables ke baare mai aur dekha tha ki ham python variable ko kaise declare kr skte hai. Is post mai hm baat krenge ki Python mai hm kaise addition , substraction , multiplication , division operation ka use kr skte hai. Agar apko do number ko add krna hai to ap kaise kr skte hai , jaise mujhe 3 or 4 ko add krna hai to kaise krunga aaiye dekhte hai a= 3  b=4 c = a+b print(c) output = 7 ye bilkul ek simple mathematical operation hai hmne a mai 3 ko store kiya aur b mai 4 ko store kiya , aur c mai a+b yani 7 ko store kiya aur fir print kara diya , print statement simply print krta hai jo bhi hamara output hota hai. Kuch log soch rahe honge ki ...

Python Variables in hindi (Part -3)

Subscribe * indicates required Email Address *                                                 Variables Variable basically ek container hota hai jisme ap data value store krte ho . example a = "hello" b = 3 c = 3.4 To idhar ap dekh skte hai  a, b, c ye teeno variable hai , a mai hmne hello naam ki string ko store kiya hai , b mai hmne 3 ko store kiya hai aur c m hamne 3.4 ko store kiya hai ap ise aise bhi samjh skte ho ki (a) ek box h  jyisme hmne hello ko daal diya hai , i hope ki apko variable bahut acche se clear ho gya hoga.  Waise mai apko bta du ki baki programming language jaise java waha hme variable ko declare krna padta hai mtlb hme batana padta hai ki ye variable kis type ka hai jaise int , float , string, char etc. lekin python mai hme yaha batana nhi padta ki ye kis type ka hai. ...

Python Syntax and Comments in Hindi (Part -2)

Subscribe * indicates required Email Address *                    Python Syntax Chalo surwat krte h dosto agar man lo apko apna naam print krana h ya fir kuch bhi print karana hai python mai to kaise kroge  , so answer is by using a print statement , jaise mera naam Rishabh Gupta hai aur mujhe  mera naam print karana hai                                     >>> print("Rishabh Gupta")                                              Rishabh Gupta    "  maine yaha double inverted comma use kiya h ap single inverted comma ya triple inverted comma bhi use kr skte ho"             ...

Python Introduction in Hindi (Part -1)

Subscribe * indicates required Email Address *                                                PYTHON                                                                                                                                                               Python kya hai ? Python ek programming language h , to programming language kya h , dekho agar mai kisi se baat kr rha hu ya fir kisi ko kuch samjha raha hu ...