【python】TypeError: can only concatenate str (not “NoneType“) to str

问题:TypeError: can only concatenate str (not "NoneType") to str

【python】TypeError: can only concatenate str (not “NoneType“) to str_第1张图片

 原因:

字符串只能拼接字符串

request_url = request_url + "?access_token=" + access_token

解决:使用str转换为字符串类型

request_url = request_url + "?access_token=" + str(access_token)

你可能感兴趣的:(大数据)