Formatting help please

Hi all!

I need some help with formatting. I cant seem to wrap my head around this issue..

Below is a code that multiplies a matrix 'a' with vector 'v'.
I need it to display the A matrix, and V matrix, and then the end result with the text.
Last edited on
in pseudocode
1
2
3
4
header = 'Result = '
print(header, c[0])
for K in c[1:]:
   print(repeat(' ', len(header)), K)
I think that's too much hastle and the end result is not pleasant.
would prefer something more like
Result =
	14
	32
	50
	68
with tabs at the beginning
Topic archived. No new replies allowed.