What will be the output of following code? x="hello ABCD"
Answers
Answered by
0
Answer:
if this is written in any programming language then nothing will happen
Explanation:
In Python
x="hello ABCD"
But to print those then we need to use print(x)
then if we run it then we will get the output as follows
hello ABCD
Similar questions