write the output for the following code: >>>a,b=12,34
>>>print(a,b,sep="\n")
>>>print (b,a,sep="*")
Answers
Answered by
0
Answer:
in python progarm if we type
a,b=12,34
print("a,b,sep="/n")
output : 12 /n34
if we type
print(b,a,sep="/*")
output : 12/*34
Similar questions
Economy,
2 months ago
Math,
4 months ago
Environmental Sciences,
4 months ago
Economy,
10 months ago
Art,
10 months ago
Social Sciences,
10 months ago