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
2
1234 pythonpythonpython
10 helloworld
pls mark as brainlist...
Similar questions