课程
/后端开发
/Python
/初识Python
L = ['12.34','9.08','73.1']
s = area_of_cicle(x)
for x in L:
print s
2018-01-15
源自:初识Python 7-1
正在回答
这个函数得自己写...
def area_of_cicle(x): return 3.14*x*x L = ['12.34','9.08','73.1'] for x in L: s = area_of_cicle(x) print s
qq_我说_9 提问者
慕圣1276146
慕斯卡4456334
# -*- coding: utf-8 -*- #先列出要计算面积的圆的半径list L = [12.3,9.01,73.1] #写运算规定 def area_of_circle(x): s = 3.14 * x * x print s #应用规定area_of_circle(x) for x in L: area_of_circle(x)
L里的数字别用引号,被当文字不能用来计算的。
举报
学python入门视频教程,让你快速入门并能编写简单的Python程序