Python Virtual Training For Arcesium - Module I - Day 2

Sep 13-17, 2021 Vikrant Patil

These notes are available online at https://notes.pipal.in/2021/arcesium_finop_batch1/module1-day2.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-day2

Functions

built in functions

type conversion

problem

[3, 878, 2, 1, 7]-> [1, 2, 3, 7, 878]
["a", "ab", "abc", "b", "boo", "bool"] # dictionary order

list slicing

list[start:end:step]

Methods

problem

List methods

[1, 2, 3, 4, 5, 6]
 0  1  2  3  4  5   <---- index

['a', 'b', 'c', 'd']
  0    1    2    3

Functions