Python将其他类型转为字符串类型

起因

我在搞网络编程时,想将服务器反馈的headers数据用某种特定的形式输出到屏幕上,但是每次都显示
TypeError: can only concatenate str (not "CaseInsensitiveDict") to str
或者
AttributeError: 'slice' object has no attribute 'lower'
于是我研究了一下决定把它转化为字符串类型的数据,然后问题解决了。

解法

demo=requests.get(url).headers	#这是获得服务器headers信息
jieguo=str(demo)				#将数据转为字符串类型
print(jieguo)					#输出结果内容

问题解决

str(变量名)						#再次演示解法

你可能感兴趣的:(Python,Linux,笔记,python,字符串,编程语言,http,linux)