notes-python
notes-python copied to clipboard
中文 Python 笔记
[NOT AN ISSUE.] Could someone volunteer to convert these IPYNBs into English?
自己也简单看了一下nbconvert,nbconvert无export_html模块,没有实现批量转换(green-hand一枚),有谁能帮忙做一下新的转换文件。
this 模块 print("".join([d.get(c, c) for c in s]))
url = 'http://ichart.finance.yahoo.com/table.csv?s=GE&d=10&e=5&f=2013&g=d&a=0&b=2&c=1962&ignore=.csv' unavailable.
Windows takes 'gbk' as default, which lead to error ''gbk' codec can't encode character '. Add encoding='utf-8' for open function.
In [4]: %timeit for row in lst: list(row) 100 loops, best of 3: 4.12 ms per loop In [5]: %timeit for row in tup: tuple(row) 100 loops, best of 3:...