The output of print(""9""*2) is
Answers
Answered by
0
Answer:
'9''9' or "9""9"
output of print(""9""*2) syntax not accepted.
Inner double quotes should be replaced with single quotes to get
output of print("'9'"*2) is '9''9'
OR vice-versa to get output of
print('"9"'*2) is "9""9"
PYTHON LANGUAGE
Similar questions