Python Virtual Training For Arcesium - Module I - Day 2

Sep 20-24, 2021 Vikrant Patil

These notes are available online at https://notes.pipal.in/2021/arcesium_finop_batch2/

© Pipal Academy LLP

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

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

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

Functions and Methods

string methods

problems

filepath = "c:\\Program Files\\Python3.9.7\\bin\\python

filepath = "c:\\Documents\Welcome.docx"
filename = "hello.xlsx"

List methods

Creating Custom Functions

Any function that does not return a value by return statement , it returns None

Calling Function Vs Function

problems

def twice(x):
    print(2*x)


twice(twice(twice(5)))
def twice(x):
    print(2*x)


twice(twice(twice(5)))