我想在我的excel中打印一个序列,
输出
article p ::first-letter:first-of-type {
font-size: 2em;
vertical-align: baseline;
}
这是我编写的代码:
Data Set 1 copy.jpg
Data Set 2 copy.jpg
但是运行此代码后它不会创建任何Excel文件。 谢谢
答案 0 :(得分:1)
那是因为您的代码中有错误。下面是错误和更正的代码-
您无法连接“ str”和“ int”对象
#erroneous line of code
ch = 'Data Set '+ a +' copy.jpg'
#use below code instead
ch = 'Data Set {} copy.jpg'.format(a)
答案 1 :(得分:1)
对于该串联,您还可以将a
更改为str()
:
ch = 'Data Set ' + str(a) + ' copy.jpg'