1. Learn
  2. /
  3. Corsi
  4. /
  5. Intermediate Python for Developers

Connected

Esercizio

Arbitrary keyword arguments

Arbitrary positional arguments are one way to add flexibility when creating custom functions, but you can also use arbitrary keyword arguments.

Your goal is to take the concat function that you created in the last exercise and modify it to accept arbitrary keyword arguments.

Istruzioni

100 XP
  • Define concat() as a function that accepts arbitrary keyword arguments called kwargs.
  • Inside the function, loop over the keyword argument's values, using kwarg as the iterator.
  • Call concat() with keyword arguments of start equal to "Python", middle equal to "is", and end equal to "great!".