The exercise template comes with a program template that includes the function and its call.
def main():
name = "Ada Lovelace"
# Write your code here
if __name__ == '__main__':
main()Modify the program so that it prints the contents of the variable name, and the printed text is the following in its full form:
Hi Ada Lovelace!
NB! When using the print command, do not pass in the string "Ada Lovelace" as a parameter. Instead, use the existing variable name: print("Hi " + ...)