Favorable default

Report a typo

Implement a function called code() that takes one optional parameter language. The function should print a message in the following format:

We code in {language}

Set "Python" as a default value for the language parameter.

Note:

  • The function should print the message with the given or default language.

  • Do not include any input handling within this function.

  • Do not call the function; only implement it.

Write a program in Python 3
def code():
# Your code here
___

Create a free account to access the full topic