This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"""Música do elefante. | |
Digite a quantidade de vezes que vai contar, preferencialmente um número par. | |
""" | |
elefantes = int(input('Digite quantos elefantes quer contar: ')) | |
ini = "{numero} {plural} muita gente!\n{numero2} elefantes {incomodam} muito mais.\n" | |
for elefante in range(1, elefantes): | |
print(ini.format( | |
numero=elefante, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- encoding: utf-8 -*- | |
#!/usr/bin/python | |
import httplib, urllib, json, sys | |
from pprint import pprint | |
from datetime import datetime | |
import optparse | |
#URI = 'localhost:5008/static/feed.html' | |
URI = 'g1.globo.com/bemestar/no-ar/index.html' |