How can I explicitly tell python to read a decimal number using the point or the comma as a decimal separator? I don\'t know the localization settings of the PC that will ru
You can use locale.atof
locale.atof
import locale locale.atof('12.3')
http://docs.python.org/2/library/locale.html