a="hello", b=15, c=20, d="12" str(b)+str(c)+d+a 2.d+10 3. d*3. 4. a+int(d) | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

a="hello", b=15, c=20, d="12" str(b)+str(c)+d+a 2.d+10 3. d*3. 4. a+int(d)

23rd Sep 2019, 2:49 PM
Nandini Asthana
Nandini Asthana - avatar
5 Answers
0
its a string manipulation ...a,b,c and. d are the variables ...and 1,2,3,4 are questions
23rd Sep 2019, 2:55 PM
Nandini Asthana
Nandini Asthana - avatar
0
why did you guys posted exactly same question ? https://www.sololearn.com/Discuss/2013335/?ref=app
23rd Sep 2019, 3:37 PM
Taste
Taste - avatar
0
Aloo
25th Sep 2019, 2:00 PM
عزالدين ذياب عبد النقيب النقيب
0
CBSE Python Std: XI Page No.80 String Manipulation Ex.No.1 print("page Number : 80 Ex.1") a="Hello" b=15 c=20 d="12" print(" My string value of a is :",a) print(" My int value of b is :",b) print(" My int value of b is :",c) print(" My String value of b is :",d) e=str(b)+str(c)+d+a print(" The result is :",e) f=(int(d)+10) print(" The result is :",f) g=d*3 print(" The result is :",g) h=a+d print(" The result is :",h)
3rd Feb 2020, 12:28 PM
Hi-Tech Rasipuram
Hi-Tech Rasipuram - avatar
0
3rd Feb 2020, 1:51 PM
Hi-Tech Rasipuram
Hi-Tech Rasipuram - avatar