python字符串拼接
参考链接:
https://www.runoob.com/python/python-strings.html
https://blog.csdn.net/feng2147685/article/details/86494905
案例:
其中, %d :格式化整数 ,%s : 格式化字符串 ,%f :格式化浮点数字,可指定小数点后的精度
1
正确写法为:
msg = '我有%d'%(self.num) + '个苹果'
错误写法为:
msg = '我有' + (self.num) + '个苹果'
2
mainfile='/%s_asas.csv'%(file_name[ii]) #例如:ark120_asas.csv
3
fout_D.write(('%s'+ ' %16.6f'*2+' %7.3f'*2+'\n') % (obj_name[i], ra[i], dec[i], z[i], z_err[i]))
来源:CSDN
作者:空中飘絮
链接:https://blog.csdn.net/weixin_45617411/article/details/103831003