-
Notifications
You must be signed in to change notification settings - Fork 68
Expand file tree
/
Copy pathTableUtilities.py
More file actions
33 lines (27 loc) · 820 Bytes
/
TableUtilities.py
File metadata and controls
33 lines (27 loc) · 820 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
"""
TableUtilities - Python equivalent of Java TableUtilities class
Contains functions for generating formatted multiplication tables using loops
"""
def get_multiplication_table(table_size):
"""
Return formatted multiplication table of specified size
Args:
table_size: Dimensions of the square multiplication table
Returns:
String representation of formatted multiplication table
"""
return None
def get_small_multiplication_table():
"""
Return formatted 4x4 multiplication table
Returns:
String representation of 4x4 multiplication table
"""
return None
def get_large_multiplication_table():
"""
Return formatted 10x10 multiplication table
Returns:
String representation of 10x10 multiplication table
"""
return None