7) What will be the output produced by following code fragments.
y=str (123)
x" hello * 3
print (x,y)
x="hello'+"world"
y=len(x)
print(x,y)
Answers
Answered by
4
Answer:
y=str (123)
x="hello" * 3
print (x,y)
x="hello"+"world"
y=len(x)
print(x,y)
The result of the above code is :
hellohellohello 123
helloworld 10
Answered by
1
This is answer Hope helpful for you
Attachments:
Similar questions
English,
3 months ago
Computer Science,
3 months ago
Accountancy,
6 months ago
Math,
10 months ago
Math,
10 months ago