Show the (decimal) value of a number of 1s appended with a 3, then squared: Difference between revisions

m
→‎{{header|Python}}: Giving the output format
(Show the (decimal) value of a number of 1s appended with a 3, then squared en Python)
m (→‎{{header|Python}}: Giving the output format)
Line 437:
for n in range(0,7):
m = make13(n)**2
print("{:d}\t\t{:d}".format(make13(n),'\t', m))</lang>
 
=={{header|Quackery}}==
2,136

edits