Sorry to ask (maybe) a simple question but I apparently cannot find an answer to a (not so minor) niggle I'm having.
My first app I created was based on older python app I once made....took me half a day to discover that counting from 1 instead of 0 in lists was what was killing my math, BTW.

The app requires a lot of user input with floating points. Being European the locale here is to use a , as a decimal indicator.
Generally I used (on my Linux box) sed to simply substitute . for , with sed: 's/\./,/g before working on the input.
Most people using the app will be from the (post Brexit) EU and thus prone to mindlessly stumbling on this , versus . thingy.
Of course I can still induce "sed" in a shell but that would hamper Windows users without a bash implementation.
I can't imagine I'm the only one encountering this so I hope someone can point me in the right direction.
Thanks in advance.
'