Help
stri + str2 - Helloworld
stri. 3 - HelloHelloHello. write the program for the result
Answers
Answered by
3
••••1]
stri='Hello'
str2='world'
print(stri+str2)
Output- Helloworld
••••2]
stri='Hello'
print(3*stri)
Output- HelloHelloHello
Attachments:
Similar questions