Give the output of following python program:
A=100
B=200
S=A+B
print(A,"+",B,"=",S, sep='@', end=###)
Answers
Answered by
0
Answer:
100@+@200@=@300###
Explanation:
sep is used as seperaor between each value printed
end tells how to end the print
Here after each printed value @ is added
and last chracters are ###
Hope it helps :-)
Similar questions