# -*- coding: utf-8 -*- def fun1(): return ("This is Function 1") def fun2(x): return x**2; def fun3(x,y): return x**2 + y**2