Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Beuys
/
errorType
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
3725c16
errorType
/
26.py
Beuys
Upload 47 files
e16247a
verified
about 1 year ago
raw
Copy download link
history
blame
Safe
143 Bytes
a=
3
b=
2
c=
1
f = [a,b,c]
#sum函数是对列表,元组等可迭代对象内的所有值求和
#错误写法:d = sum(a,b,c)
d=
sum
(f)
print
(d)