python 列表 只能与列表 相加 输出结果

# list() + 'a' # TypeError: can only concatenate list (not "str") to list
list_test = list().append('a')  # return None
list() + ['a']  # okay