1.基于 Python 的计算思维训练——函数
- 第一个函数
# coding:utf-8
deg = input()
def F(C):
#*请在此添加代码,将摄氏度deg转换为华氏度*#
#********** Begin *********#
f=int(C)*(9.0/5)+32#*9.0才可以*#
return f
#********** End *********#
print ("%.2f"%(F(deg)))
- 在函数中修改全局变量
# coding:utf-8
counter = 0
def access():
#请在此添加代码,实现counter的调用,每次调用counter的值加1
#********** Begin *********#
global counter
counter+=1
return counter
#********** End **********#
for i in range(5):
access()
print (counter)
- 练习使用参数
# coding:utf-8
from math import sqrt
a = float(input()); b = float(input()); c = float(input())
def roots(a,b,c):
#请在此添加代码,求方程 ax^2+bx+c = 0的解,返回由方程根构成的列表,若方程有无数解,返回['inf']
#********** Begin *********#
if (b**2-4*a*c)<0:
return ['inf']
else:
x1=((-b