Unit 4 Task 1: Club welcome message

Learn to code with step-by-step lessons. A place for students to work through programming fundamentals and build skills.

Unit 4 Task 1 - Club welcome message

← Unit 4 tasks · Solution


Write a function welcome(name) that prints a one-line greeting, for example: Welcome to coding club, Alex (use the name parameter).

Under your function, call welcome twice with two different string names.

Skills: def, one parameter, print (no return needed).