manuskript/src/functions.py
Olivier Keshavjee 38a57f9d46 Word goals
2015-06-05 11:37:01 +02:00

20 lines
379 B
Python

#!/usr/bin/env python
#--!-- coding: utf8 --!--
from __future__ import print_function
from __future__ import unicode_literals
def wordCount(text):
return len(text.strip().split(" ")) if text else 0
def toInt(text):
if text:
return int(text)
else:
return 0
def toFloat(text):
if text:
return float(text)
else:
return 0.