看板 [ Python ]
討論串[問題] 關於input format ?
共 3 篇文章
首頁
上一頁
1
下一頁
尾頁

推噓0(0推 0噓 0→)留言0則,0人參與, 最新作者timerover (再也不會輸了!!!)時間18年前 (2006/11/01 10:53), 編輯資訊
2
0
0
內容預覽:
請問python有類似C語言中scanf的fomat input嗎. 我查了查 只有看到format output. 現在遇到了個問題 使用者輸入單行 "input1 input2 input3". 用空白分隔. input()吃不進來. raw_input()進來parse雖可達到目的 但頗耗費時

推噓1(1推 0噓 0→)留言1則,0人參與, 最新作者zhouer ( )時間18年前 (2006/11/01 12:16), 編輯資訊
0
0
0
內容預覽:
我寫了一個 readSep, 每次可以取得一個用泛白字元隔開的 token. 不知道這樣合不合用?. def readSep():. while( True ):. line = raw_input(). for s in line.split():. yield s. if __name__ ==
(還有77個字)

推噓0(0推 0噓 1→)留言1則,0人參與, 最新作者jtmh (Believing is seeing! ^^)時間18年前 (2006/11/01 16:36), 編輯資訊
0
0
1
內容預覽:
請參看 Python 官方網站上的 Programming FAQ:. http://www.python.org/doc/faq/programming/. 中的 1.3.8 Is there a scanf() or sscanf() equivalent?. 我也還算是新手 (請鞭小力一點 :
(還有293個字)
首頁
上一頁
1
下一頁
尾頁