在python编程中,eval函数的作用是什么?
一、字符串转换成列表
二、字符串转换成字典
三、字符串转换成元组
eval函数就是实现list、dict、tuple与str之间的转化
str函数把list,dict,tuple转为为字符串
一、字符串转换成列表
a="[[1,2],[3,4],[5,6],[7,8],[9,0]]"print(type(a))
b=eval(a)
print(type(b))print(b)
请点击输入图片描述
二、字符串转换成字典
a="{1:a,2:b}"print(type(a))
b=eval(a)print(type(b))print(b)
三、字符串转换成元组
a="([1,2],[3,4],[5,6],[7,8],(9,0))"print(type(a))
b=eval(a)print(type(b))print(b)
请点击输入图片描述
python简单的函数定义和用法实例
python简单的函数定义和用法实例
这篇文章主要介绍了python简单的函数定义和用法,实例分析了Python自定义函数及其使用方法,具有一定参考借鉴价值,需要的朋友可以参考下
具体分析如下:
这里定义了一个温度转换的函数及其用法。
defconvertTemp(temp,scale):
ifscale=="c":
return(temp-32.0)*(5.0/9.0)
elifscale=="f":
returntemp*9.0/5.0+32
temp=int(input("Enteratemperature:"))
scale=input("Enterthescaletoconvertto:")
converted=convertTemp(temp,scale)
print("Theconvertedtempis:"+str(converted))
希望本文所述对大家的Python程序设计有所帮助。
本回答由网友推荐