Computer Science, asked by Yuvarajvishal, 4 months ago

write the output for the following code: >>>a,b=12,34
>>>print(a,b,sep="\n")
>>>print (b,a,sep="*")​

Answers

Answered by zezus
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