開発環境
- OS X Mavericks - Apple(OS)
- Emacs (CUI)、BBEdit - Bare Bones Software, Inc. (GUI) (Text Editor)
- Python (プログラミング言語)
Learning Python (Mark Lutz (著)、Oreilly & Associates Inc)のPART II.(Types and Operations)、Test Your Knowledge: Part II Exercises、8.(String indexing)を解いてみる。
その他参考書籍
8.(String indexing)
入出力結果(Terminal)
$ python3 Python 3.3.4 (default, Feb 10 2014, 22:06:52) [GCC 4.2.1 Compatible Apple LLVM 5.0 (clang-500.2.79)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> s='spam' >>> s[0][0][0][0][0] # 's' 's' >>> l = list(s) >>> l ['s', 'p', 'a', 'm'] >>> l[0][0][0][0][0] # 's' 's' >>> quit() $
0 コメント:
コメントを投稿