Computer Science, asked by vidyaichchangi09, 8 months ago

Predict the output of following code

a=str(1234)

b="python"*3

print(a,b)

a="hello"+"world"

b=len(a)

print(b, a).​

Answers

Answered by pavithranatarajan855
0

Answer:

1234 pythonpythonpython

10 helloworld

Explanation:

Similar questions