Some helpers without having a specific module
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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)