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)
5 Réponses
0
its a string manipulation ...a,b,c and. d are the variables ...and 1,2,3,4 are questions
0
why did you guys posted exactly same question ?
https://www.sololearn.com/Discuss/2013335/?ref=app
0
Aloo
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)
0