MCPcopy Index your code
hub / github.com/PySimpleGUI/PySimpleGUI / number

Function number

DemoPrograms/Demo_Table_Checkmark.py:42–43  ·  view source on GitHub ↗
(max_val=1000)

Source from the content-addressed store, hash-verified

40def word():
41 return ''.join(random.choice(string.ascii_lowercase) for i in range(10))
42def number(max_val=1000):
43 return random.randint(0, max_val)
44
45def make_table(num_rows, num_cols):
46 data = [[j for j in range(num_cols)] for i in range(num_rows)]

Callers 1

make_tableFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected