mycode = 'print("hello world")'
code = """
def mutiply(x,y):
return x*y print('Multiply of 2 and 3 is: ',mutiply(,))
"""
exec(mycode)
exec(code)
mycode = 'print("hello world")'
code = """
def mutiply(x,y):
return x*y print('Multiply of 2 and 3 is: ',mutiply(,))
"""
exec(mycode)
exec(code)