Talk:Pascal's triangle: Difference between revisions

m
→‎Right Output Format?: added comment about formatting the triangle's numbers.
m (→‎Right Output Format?: added comment about formatting the triangle's numbers.)
Line 33:
row=[l+r for l,r in zip(row+k,k+row)]
z -= 1</lang>Likely, there are more elegant formatting methods. This is to my ability. --[[User:Jnever1|Jnever1]] 04:35, 14 March 2012 (UTC)
 
::--- Easy or not, it's what makes Pascal's triangle a ... well, a triangle. Having the output in a triangle is what shows (easlily) what the relationship is between any number and the two above it, assuming that the "above" numbers in the line are formatted properly. Next thing you know, Latin squares will be acceptable as all the numbers on one line. It should be an easy thing to insert some blanks before/between the numbers. -- [[User:Gerard Schildberger|Gerard Schildberger]] 19:07, 14 May 2012 (UTC)
 
== J Explanation ==