python基本使用

使用命令行参数

    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基本使用)