9 lines
163 B
Python
9 lines
163 B
Python
#!/usr/bin/env python
|
|
|
|
test_list = [ 21,9,17,10 ]
|
|
|
|
def check_mathematical_series(n: int) -> str:
|
|
print(n)
|
|
|
|
for n in test_list:
|
|
check_mathematical_series(n) |