Computer Science, asked by surbhigupta8433, 6 months ago

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 imtiyazallam
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 sahunikita561
1

This is answer Hope helpful for you

Attachments:
Similar questions