Here is my code to solve for this equation manually:
b=2
c=3
sum= [[1, 4 + c, 0], [6, 2 + b + c, b]]
[[1, 7, 0], [6, 7, 2]]
this is the output I get and it works and the type : <class 'list'>
How do I get the same output but as a string? I don't want to change the above list type to string.
b=2
c=3
sum= "[[1, 4 + c, 0], [6, 2 + b + c, b]]"
'[[1, 4 + c, 0], [6, 2 + b + c, b]]'
Why does this not work, it is the right output "type" but the values for b and c don't work.
Thanks for your help.