私は「Learn Python the Hard Way」に取り組んできましたが、これまでのところかなりうまくいっていますが、いくつか質問があります。
the_count = [1, 2, 3, 4, 5]
fruits = ['apples', 'oranges', 'pears', 'apricots']
change = [1, 'pennies', 2, 'dimes', 3, 'quarters']
# this first kind of for-loop goes through a list
for number in the_count:
print "This is count %d" % number
# same as above
for fruit in fruits:
print "A fruit of type: %s" % fruit
# also we can go through mixed lists too
# notice we have to use %r since we don't know what's in it
for i in change:
print "I got %r" % i
これらの for ループでは、それぞれ「number」、「fruit」、「i」という単語が何であるかは重要ですか? Pythonのすべてを定義する必要があるように感じますが、それが理にかなっている場合、実際に数値を「定義」することはありません。この質問を正しく表現する方法が正確にはわかりません=/