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

MyMemoWiki

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

提供: MyMemoWiki
ナビゲーションに移動 検索に移動
(ページの作成:「==Python ファイル読み書き== [Python] ====ファイルの内容出力==== >>> f = open('/test.txt', 'r') >>> for s in f >>> print s >>> :…」)
 
1行目: 1行目:
 
==Python ファイル読み書き==
 
==Python ファイル読み書き==
[Python]
+
[[Python]]
  
 
====ファイルの内容出力====
 
====ファイルの内容出力====
  >>> f = open('/test.txt', 'r')
+
  >>> f = open('/test.txt', 'r')
  >>> for s in f
+
  >>> for s in f
  >>>     print s
+
  >>>     print s
  >>>
+
  >>>
 
     :
 
     :
  >>> f.close()
+
  >>> f.close()
  
 
====ファイルに書き込み====
 
====ファイルに書き込み====
  >>> f = open('/test.txt', 'w')
+
  >>> f = open('/test.txt', 'w')
  >>> f.write('this is test.')
+
  >>> f.write('this is test.')
  >>> f.close()
+
  >>> f.close()
  
 
====ファイルに対してできる操作を確認====
 
====ファイルに対してできる操作を確認====
  >>> dir(f)
+
  >>> dir(f)
  
 
====Python 文字コードを指定してファイルを開く====
 
====Python 文字コードを指定してファイルを開く====
 
*Python 文字コードを指定してファイルを開く
 
*Python 文字コードを指定してファイルを開く

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

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 文字コードを指定してファイルを開く