Function to Concatenate Three Arguments

  • Share this:

Code introduction


Define a function that returns a string concatenated from three arguments.


Technology Stack : Built-in functions, function definition

Code Type : Function

Code Difficulty : Beginner


                
                    
def aaaa(arg1, arg2, arg3):
    def bbb():
        return arg1 + arg2 + arg3

    return bbb()