Menu
Coddy logo textTech

Create your own

Lesson 10 of 19 in Coddy's Into the Past || Complete Beginner for Python Strings course.

Arguments and string  have a lot in common.  With Arguments you can pass as many as many as you need into a function.  Same with strings., you can concatenate as many strings together as you need.

challenge icon

Challenge

Easy

I want you to create a function which excepts 3 arguments and concatenates them together

Write a function together that gets,

  • a1 - string
  • a2 - string
  • a3 - string

And outputs string, which is …


Example:

Input - in, so, far

Expected Output -  insofar

Try it yourself

#write your code below

All lessons in Into the Past || Complete Beginner for Python Strings