area is a local variable in a function, that means that outside of that function, you can't access it. You should read up on scoping and functions. The best solution here is to return values from your functions, and pass arguments into others.
You seem to lack an understanding of how the code is evaluated. Code is executed as a series of statements in order, one after the other. Variables can only be used once they have been defined. In Area(), you are defining your variables after you are attempting to use them. This doesn't make sense.
Also note that eval() is a bad way of getting a number from a string (it is slow, not designed for the purpose, and allows arbitrary code execution), use int() instead.
Also note that PEP-8 recommends keeping CapWords for classes, and using lowercase_with_underscores for function names, so Area() should probably be area(). This will help keep your code consistent and readable.