Concatenate and Uppercase Strings

  • Share this:

Code introduction


Concatenate two strings and convert the result to uppercase.


Technology Stack : String concatenation, converting string to uppercase

Code Type : String operation

Code Difficulty : Beginner


                
                    
def aaaa(arg1, arg2):
    """
    将两个字符串连接并转换为大写。
    """
    return (arg1 + arg2).upper()