class Solution:
    def trans(self , s: str, n: int) -> str:
        # write code here
        nums = [i.swapcase() for i in s.split(' ')[::-1]]
        return ' '.join(nums)
使用swapcase函数进行大小写转换