- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有两个带有数字的列表,我希望它们能很好地写出来,就像我从 print item1, item2
中得到的那样。有人可以帮忙吗?
outfile = open("tabal_t_y.dat", "w")
for item1, item2 in zip(t, y):
outfile.write()
outfile.close()
最佳答案
evaluates each expression in turn and writes the resulting object… If an object is not a string, it is first converted to a string using the rules for string conversions… A space is written before each object is (converted and) written…
但是,如果您在文档中进一步阅读:
>>
must evaluate to a “file-like” object… the subsequent expressions are printed to this file object…
因此,您根本不必使用 outfile.write
执行此操作,您只需执行以下操作即可:
print >>outfile, item1, item2
<小时/>
但是如果您想使用 outfile.write
,您可以通过两种不同的方式自行完成 print
所做的一切:
首先,您可以将输出转换为字符串,然后用空格将它们连接起来:
outfile.write(' '.join(map(str, (item1, item2))))
outfile.write(str(item1) + ' ' + str(item2))
def write_things(f, *things):
f.write(' '.join(map(str, things))))
write_things(outfile, item1, item2)
…或者任何你觉得舒服的东西。
或者您可以使用string formatting :
outfile.write('{} {}'.format(item1, item2))
关于python - 使用 write 函数编写格式良好的列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26083809/
嗨,我正在考虑开发一种文件传输程序,想知道我是否想要尽可能好的加密,我应该使用什么? 我会用 C# 开发它,所以我可以访问 .net 库 :P在我的 usb 上有一个证书来访问服务器是没有问题的,如果
我创建的这个计算两个数组的交集是线性的方法的复杂度(在良好、平均、最差的情况下)? O(n) public void getInt(int[] a,int[] b){ int i=0; int
我已经能够使用 RTCPeerConnection.getStats() API 获得 WebRTC 音频调用的各种统计信息(抖动、RTT、丢包等)。 我需要将整体通话质量评为优秀、良好、一般或差。
基本问题: 如果我正在讲述/修改数据,我应该通过索引硬编码索引访问文件的元素,即 targetFile.getElement(5);通过硬编码标识符(内部翻译成索引),即 target.getElem
在 Linux 上,我想知道要调用什么“C”API 来获取每个 CPU 的统计信息。 我知道并且可以从我的应用程序中读取 /proc/loadavg,但这是系统范围的负载平均值,而不是每个 CPU 的
在客户端浏览器中使用 fetch api,GET 或 POST 没有问题,但 fetch 和 DELETE 有问题。它似乎将 DELETE 请求方法更改为 OPTIONS。 大多数研究表明是一个cor
我是一名优秀的程序员,十分优秀!