Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Beuys
/
errorType
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
errorType
/
34.py
Beuys
Upload 47 files
e16247a
verified
about 1 year ago
raw
Copy download link
history
blame
contribute
delete
Safe
96 Bytes
lst = [
1
,
2
,
3
,
4
,
5
]
#错误写法:a,b,c,d = eval(lst[0:3])
a,b,c,d = lst[
0
],lst[
1
],lst[
2
],lst[
3
]