⭐ What does this traffic sign mean?
[x] Indication of existing overhead electrical wires
[x] Rail traffic always has priority
[x] You must always wait when a rail vehicle is approaching
| import BeautifulSoup as bs | |
| from collections import defaultdict | |
| xml_votos = open('./votos-camara.xml') | |
| xml_data = bs.BeautifulSoup(xml_votos.read()) | |
| dpts = xml_data.findAll('deputado') | |
| hist_pt = defaultdict(int) | |
| for d in dpts: | |
| if d['voto'] != u'Não': |
| #!/usr/bin/python2 | |
| # coding: utf-8 | |
| import re, datetime, random, time | |
| CHAIN_LENGTH=3 | |
| START = '\1' | |
| END = '\0' | |
| ansi_escape = re.compile(r'\x1b[^m]+m') | |
| data = {} |