Some helpers without having a specific module
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

continues_statistic.py 171B

12345678910
  1. import sys
  2. sys.path.append('../..')
  3. import helpers
  4. cs = helpers.continues_statistic()
  5. for val in (1, 3, 5, 4):
  6. cs += helpers.continues_statistic(val)
  7. print(cs)