{"id":225,"date":"2020-11-10T10:06:19","date_gmt":"2020-11-10T10:06:19","guid":{"rendered":"http:\/\/lamiaiftekhar.com\/?page_id=225"},"modified":"2020-11-10T10:06:19","modified_gmt":"2020-11-10T10:06:19","slug":"20-minutes-python-day-13","status":"publish","type":"page","link":"https:\/\/lamiaiftekhar.com\/index.php\/20-minutes-python-day-13\/","title":{"rendered":"20-Minutes Python: Day 13"},"content":{"rendered":"<body>\n<p>Let\u2019s do some loops!<\/p>\n\n\n\n<p>The general format is<\/p>\n\n\n\n<p>For (single item of range) in range:<br>do stuff<\/p>\n\n\n\n<p>Note the colon and the tab in the next line here too! Just like \u2018if\u2019 code.<\/p>\n\n\n\n<ol class=\"wp-block-list\"><li>Type and run<\/li><\/ol>\n\n\n\n<p><strong>cousinsAge = [16, 19, 19, 22, 23, 27, 27, 33, 35, 40]<\/strong><\/p>\n\n\n\n<p><strong>for age in cousinsAge:<br>print(age)<\/strong><\/p>\n\n\n\n<p>Note the \u2018age\u2019 variable in the for loop. It is a loop variable that takes turn to contain each variable in the list as we loop through it<\/p>\n\n\n\n<p>It is not the index like is C++, or a loop variable that only exists in a loop. It is true that its existence start with the for loop call \u2013 but if you print it later outside the loop you will notice that it quietly continues to exist holding the last value it captured (in the last iteration)<\/p>\n\n\n\n<p>We can use any variable name instead of age. Let\u2019s do a bit more of the same\/similar thing \u2013 so that we understand.<\/p>\n\n\n\n<ol class=\"wp-block-list\" start=\"2\"><li>Type and run<\/li><\/ol>\n\n\n\n<p><strong>for eachItem in cousinsAge:<br>print(\u201cI have a %d-year-old cousin\u201d %eachItem)<\/strong><\/p>\n\n\n\n<ol class=\"wp-block-list\" start=\"3\"><li>The range doesn\u2019t have to be a list of numbers, it can be a list of strings too!<\/li><\/ol>\n\n\n\n<p>Type and run<\/p>\n\n\n\n<p><strong>shoppingList = [\u2018ladyfingers\u2019,\u2019peas\u2019, \u2018onions\u2019, \u2018beef\u2019, \u2018jam\u2019, \u2018custard\u2019, \u2018bananas\u2019, \u2018whipped cream\u2019, \u2018raspberries\u2019]<\/strong><\/p>\n\n\n\n<p><strong>print(\u201cTo make the Thanksgiving Trifle Rachel made in Friends, I need the following: \u201c)<br>for ingredient in shoppingList:<br>print(ingredient)<\/strong><\/p>\n<\/body>","protected":false},"excerpt":{"rendered":"<p>Let\u2019s do some loops! The general format is For (single item of range) in range:do stuff Note the colon and the tab in the next line here too! Just like \u2018if\u2019 code. Type and run cousinsAge = [16, 19, 19, 22, 23, 27, 27, 33, 35, 40] for age in cousinsAge:print(age) Note the \u2018age\u2019 variable [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"om_disable_all_campaigns":false,"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"class_list":["post-225","page","type-page","status-publish","hentry","entry"],"jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/lamiaiftekhar.com\/index.php\/wp-json\/wp\/v2\/pages\/225","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/lamiaiftekhar.com\/index.php\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/lamiaiftekhar.com\/index.php\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/lamiaiftekhar.com\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/lamiaiftekhar.com\/index.php\/wp-json\/wp\/v2\/comments?post=225"}],"version-history":[{"count":1,"href":"https:\/\/lamiaiftekhar.com\/index.php\/wp-json\/wp\/v2\/pages\/225\/revisions"}],"predecessor-version":[{"id":226,"href":"https:\/\/lamiaiftekhar.com\/index.php\/wp-json\/wp\/v2\/pages\/225\/revisions\/226"}],"wp:attachment":[{"href":"https:\/\/lamiaiftekhar.com\/index.php\/wp-json\/wp\/v2\/media?parent=225"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}