> How to write python program that prints election results in: Candidates Votes Percent ========== ===== =======?

How to write python program that prints election results in: Candidates Votes Percent ========== ===== =======?

Posted at: 2014-12-18 
If the data is coming from the keyboard then use

Python2: raw_input ()

Python3: input ()

Candidates Votes Percent

========== ===== =======

Oriah Zhang 213 19 %

John Black 319 29 %

Lee Alder 286 26 %

Zoe Lester 263 24 %

The winner is John Black with 319 votes!

Total votes polled: 1081