Python Virtual Training For Arcesium - Module I - Day 4

Sep 13-17, 2021 Vikrant Patil

These notes are available online at https://notes.pipal.in/2021/arcesium_finop_batch1/module1-day4.html

© Pipal Academy LLP

Day 1 | Day 2 | Day 3 | Day 4 | Day 5

We will be using jupyter hub from https://lab.pipal.in for this training.

login to hub and create a notebook with name module1-day4

items = [[1, 2, 3, 4],
         [1, 1, 1],
         [1, 2, 3, 4, 5, 6, 7],
         [2]
         [1, 2, 3, 4, 5]]
courses = {
    "practical python": ["Python practice book", "Python for finance", "Python cookbook"],
    "elegant programming": ["SICP", "Python programming", "Art of Programming"],
    "python primer": ["Python practice book", "Python from scratch"],
    "extreme programming": ["Async Python", "Web and Python", "Optimizing python code", "Advanced Python"]
}

Functions that return a function

Programming constructs

Conditions

While loop

for loops

problems

bonus

[1, 1, 2, 3, 4, 5, 5, 6, 6, 6]

unique items

[1, 2, 3, 4, 5, 6]

tips for looping