美文网首页
python基本使用

python基本使用

作者: 137c | 来源:发表于2019-10-14 11:18 被阅读0次

使用命令行参数

    for f in sys.argv[1:]:
        data = open(f).readlines()
        data = map(float, data)
        cdf_plot(data, f, 100)

python读写

读写模式

image.png

open

先打开,open句柄,再close关闭。

with open('file.txt', 'r') as old_file:
  with open('file.txt', 'r+') as new_file:

write

python write和writelines的区别
file.write(str)的参数是一个字符串,就是你要写入文件的内容.
file.writelines(sequence)的参数是序列,比如列表,它会迭代帮你写入文件。

map成批转换为int?

# data=map(int,data) # 将data转换为int型list,但不行,逐个来

空语句pass

执行后,什么也不做,继续执行后面的。

相关文章

网友评论

      本文标题:python基本使用

      本文链接:https://www.haomeiwen.com/subject/ehyipctx.html