Python 筆記

  • 1109
  • 0
  • 2013-08-28

摘要:Python 筆記

取得自身目錄

print sys.path[0]

取得自身目錄加檔案

print os.path.join(sys.path[0], sys.argv[0])

檔案IO

Str = "Hello this is my Python\n"
f = file("C:\\abc.txt","w+")
f.write(Str)
f.close()

 

TelnetLib

http://en.wikipedia.org/wiki/ASCII