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
/
31.py
Beuys
Upload 47 files
e16247a
verified
about 1 year ago
raw
Copy download link
history
blame
Safe
220 Bytes
a =
100
b =
100.123
c =
"this is string"
# 错误写法:print("this is int type:%d,this is float type:%.3f, this is str type:%s"(a,b,c))
print
(
"this is int type:%d,this is float type:%.3f, this is str type:%s"
%(a,b,c))