Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

multiplication table python

multiplication_table = []
for x in range(0, 100): 
    multiplication_table.append([i*x for i in range(0, 100)])
multiply = multiplication_table
    
multiply[6][6]
# 36
 
PREVIOUS NEXT
Tagged: #multiplication #table #python
ADD COMMENT
Topic
Name
1+4 =