# # Second attempt to modify the parameter's value # def main(): x=10 x=modify(x) print("The value of x is",x) def modify(x): x=x+20 print("Trying to change the value of x to",x) return x main()