> Python 3.4 programming help?

Python 3.4 programming help?

Posted at: 2014-12-18 
Instead of using

A=4, E=3

use

A, E = 4, 3

Or you could just use separate lines

A = 4

E = 3

So I want to make a leet alphabet program in which the user imputs a sentence like.

"Hello how are you?"

and the output from the program is:

"H3ll0 h0w 4r3 y0u"

Now I've tried doing A=4, E=3 etc, but when I call them I get an error where A is not defined..

Can anyone help?