以下程序输出到文件 text.csv 里的结果是:
fo = open("text.csv",'w')
x = [90,87,93]
z = []
for y in x:
z.append(str(y))
fo.write(",".join(z))
fo.close()
B
暂无解析
以下程序的输出结果是:
s=0
deffun(num):
try:
s+=num
returns
except:
return0
return5
print(fun(2))
下列叙述中正确的是
以下关于字符串类型的操作的描述,错误的是: