Given two variables:
a = [40, 10, 50, 10, 40, 50]
b = [25, 50, 25, 40, 10, 45]
I need to print them as follows:
([40, 10, 50, 10, 40, 50],
[25, 50, 25, 40, 10, 45])
Can anyone tell me how I get each list to appear on a new line?
Given two variables:
a = [40, 10, 50, 10, 40, 50]
b = [25, 50, 25, 40, 10, 45]
I need to print them as follows:
([40, 10, 50, 10, 40, 50],
[25, 50, 25, 40, 10, 45])
Can anyone tell me how I get each list to appear on a new line?
SOLUTION:
you could do this:
About the function
repr()
: