output please tell imediately
Attachments:
Answers
Answered by
1
Answer:
Explanation:
1. >>>x=y=z=5
>>>print(y)
Solution:- 5 (As you can see the value 5 is assign to x,y and z.)
2. >>>A="RAM"
>>>B="SINGH"
>>> print(A+B)
Solution :- RAMSINGH
3. >>>print("HELLO"*5)
Solution :- HELLOHELLOHELLOHELLOHELLO (5 TIMES HELLO will be printed)
4 >>> x=3
>>> y="HELLO"
>>> print(y*x)
Solution :- HELLOHELLOHELLO (3 times HELLO will be printed as X=3 and Y="HELLO" )
Similar questions