| ページ一覧 | ブログ | twitter |  書式 | 書式(表) |

MyMemoWiki

「Python ファイル読み書き」の版間の差分

提供: MyMemoWiki
ナビゲーションに移動 検索に移動
1行目: 1行目:
 
==Python ファイル読み書き==
 
==Python ファイル読み書き==
[[Python]]
+
[[Python]] |
  
 
====ファイルの内容出力====
 
====ファイルの内容出力====

2020年2月15日 (土) 08:38時点における版

Python ファイル読み書き

Python |

ファイルの内容出力

>>> f = open('/test.txt', 'r')
>>> for s in f
>>>     print s
>>> 
   :
>>> f.close()

ファイルに書き込み

>>> f = open('/test.txt', 'w')
>>> f.write('this is test.')
>>> f.close()

ファイルに対してできる操作を確認

>>> dir(f)

Python 文字コードを指定してファイルを開く

  • Python 文字コードを指定してファイルを開く