Some helpers without having a specific module
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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)