スポンサーリンク

Windows8.1でPython3を始めてみる(3)(ドットインストールPython入門)

前回、前々回に引き続き、ドットインストールのPython入門を、Python3でやってみる。

http://twosquirrel.mints.ne.jp/?p=8968

http://twosquirrel.mints.ne.jp/?p=8995

(環境)
Windows8.1
Python 3.5.2 (Anaconda 4.1.1 64-bit)
cmd.exe で、 jupyter notebook と入力し、jupyter notebook上でpython3を実行。

#16 forでループ処理をしてみよう
http://dotinstall.com/lessons/basic_python_v2/26016

image

image

image

 

#17 辞書でループ処理をしてみよう
http://dotinstall.com/lessons/basic_python_v2/26017

勢いよく飛ばしてきたが、ここで、また、はまった。

image

python3では、iteritems() が使用できないらしい。

(参考)Python 3: 第 1 回 何が新しいのか 2008年 12月 19日
https://www.ibm.com/developerworks/jp/linux/library/l-python3-1/

2012-11-11 Pythonのitems()とiteritems()の違い
http://ymizushi.hateblo.jp/entry/2012/11/11/162101

ということで、iteritems() ではなくitems() を用いる。

image

#18 whileでループ処理をしてみよう
http://dotinstall.com/lessons/basic_python_v2/26018

image

image

#19 関数を使ってみよう
http://dotinstall.com/lessons/basic_python_v2/26019

 

image

続きはまた今度、、、

スポンサーリンク

Python

Posted by twosquirrel