Python 2.7:从不同位置调用文本文件

时间:2015-10-15 18:59:13

标签: python

所以,我在Windows环境中。

  1. 我用记事本创建了文本文件。
  2. 我把它保存在我的文件中。
  3. 我打开了python的空闲shell。
  4. 我使用了functions.php
  5. 键入if (is_page('AOE Home')){ wp_nav_menu(array('menu'=>'Primary Navigation' )); } elseif (is_page('turkish')) { echo "text"; wp_nav_menu(array('menu'=>'Turkish Navigation' )); }
  6. 按Enter键,结果为''两个单引号?

2 个答案:

答案 0 :(得分:1)

如果文本文件不在当前工作目录中,则需要指定文本文件的完整路径:

testFile = open("c:/Users/yourusername/My Documents/text.txt")

答案 1 :(得分:-4)

testFile = open("test.txt", "rb")
testFile.read()