21 lines
412 B
Python
21 lines
412 B
Python
from sympy import diff, limit, oo, symbols
|
|
import unittest
|
|
|
|
from modules.math import (
|
|
test_math_module
|
|
)
|
|
from modules.probability import (
|
|
test_probability_module
|
|
)
|
|
from modules.statistics import (
|
|
test_statistics_module
|
|
)
|
|
from modules.strings import t_strings
|
|
|
|
if __name__=="__main__":
|
|
# t_strings()
|
|
# test_math_module()
|
|
# test_probability_module()
|
|
# test_statistics_module()
|
|
# test_exercises_module()
|