String Concatenation Function

  • Share this:

Code introduction


Concatenates two arguments after converting them to strings.


Technology Stack : Converts both arguments to strings and concatenates them.

Code Type : String concatenation function

Code Difficulty : Beginner


                
                    
def astring(arg1, arg2):
    return str(arg1) + str(arg2)