Example #1
0
from allcaps import capitalize

for word in '''several species of small furry animals gathered together in a cave and grooving with a pict'''.split(
):
    print capitalize(word)
Example #2
0
import allcaps 

for word in '''several species of small furry animals gathered together in a cave and grooving with a pict'''.split():
    print allcaps.capitalize(word)
Example #3
0
from allcaps import capitalize

for word in '''several species of small furry animals gathered together in a cave and grooving with a pict'''.split():
    print capitalize(word)
Example #4
0
import allcaps

for word in '''several species of small furry animals gathered together in a cave and grooving with a pict'''.split(
):
    print allcaps.capitalize(word)