Find the bug: forgotten return
Variables
Data types
Read the code carefully
n = 5 def triple(n): n = n * 3 return n result = triple(n) print(result) print(n)
What will the program print? Write here: