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
Math,
2 months ago
English,
2 months ago
Geography,
2 months ago
Math,
6 months ago
Environmental Sciences,
6 months ago
Economy,
11 months ago
Art,
11 months ago
Social Sciences,
11 months ago