dotfiles/dot_local/bin/executable_alternate

25 lines
388 B
Plaintext
Raw Normal View History

2020-04-01 16:25:30 +02:00
#! /usr/bin/env python
# -*- coding: utf-8 -*-
# vim:fenc=utf-8
#
# Copyright © 2020 <pavle.portic@tilda.center>
#
# 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)