diff --git a/dot_local/bin/executable_alternate b/dot_local/bin/executable_alternate new file mode 100644 index 0000000..fe0aa33 --- /dev/null +++ b/dot_local/bin/executable_alternate @@ -0,0 +1,24 @@ +#! /usr/bin/env python +# -*- coding: utf-8 -*- +# vim:fenc=utf-8 +# +# Copyright © 2020 +# +# Distributed under terms of the BSD 3-Clause license. + +text = input().lower() +case = True +output = '' +for c in text: + if c in [',', '.', ' ', ':', '"', '\'']: + output += c + continue + + if case: + output += c.upper() + else: + output += c + + case = not case + +print(output)