Podcast
Questions and Answers
Which function returns the number of items in a list?
Which function returns the number of items in a list?
- count()
- length()
- len() (correct)
- size()
Which function adds an element to the end of a list?
Which function adds an element to the end of a list?
- insert()
- append() (correct)
- add()
- extend()
Which method adds multiple elements to the end of a list?
Which method adds multiple elements to the end of a list?
- append()
- add()
- insert()
- extend() (correct)
Which method inserts an element at a specific index in a list?
Which method inserts an element at a specific index in a list?
Which method removes and returns an element from a list based on its index?
Which method removes and returns an element from a list based on its index?
Which method removes the first occurrence of a specific value from a list?
Which method removes the first occurrence of a specific value from a list?
Which method removes all elements from a list?
Which method removes all elements from a list?
Which method is used to count the occurrences of a specific element in a list?
Which method is used to count the occurrences of a specific element in a list?
Which method reverses the order of elements in a list in place?
Which method reverses the order of elements in a list in place?
Which method sorts the elements of a list in place?
Which method sorts the elements of a list in place?
Which function returns the smallest element in a list?
Which function returns the smallest element in a list?
Which function calculates the sum of all elements in a list?
Which function calculates the sum of all elements in a list?
What is the purpose of the list()
function?
What is the purpose of the list()
function?
What does the index()
method return?
What does the index()
method return?
Which function returns the length of a tuple?
Which function returns the length of a tuple?
Which function returns the element from a tuple with the maximum value?
Which function returns the element from a tuple with the maximum value?
Which is the correct syntax for performing a sorted operation in reverse order?
Which is the correct syntax for performing a sorted operation in reverse order?
Which function clears a dictionary?
Which function clears a dictionary?
Which function returns a shallow copy of a dictionary?
Which function returns a shallow copy of a dictionary?
Which function adds elements to a dictionary?
Which function adds elements to a dictionary?
What is the purpose of the len()
function when used with a dictionary?
What is the purpose of the len()
function when used with a dictionary?
Which function creates a new dictionary with keys from a sequence and values set to a specified value?
Which function creates a new dictionary with keys from a sequence and values set to a specified value?
Flashcards
len()
len()
Returns the number of characters in a list.
list()
list()
Creates a list from a sequence like a string, list, or tuple.
index()
index()
Returns the index of the first occurrence of an item in a list.
append()
append()
Signup and view all the flashcards
extend()
extend()
Signup and view all the flashcards
insert()
insert()
Signup and view all the flashcards
pop()
pop()
Signup and view all the flashcards
remove()
remove()
Signup and view all the flashcards
clear()
clear()
Signup and view all the flashcards
count()
count()
Signup and view all the flashcards
reverse()
reverse()
Signup and view all the flashcards
sort()
sort()
Signup and view all the flashcards
min()
min()
Signup and view all the flashcards
max()
max()
Signup and view all the flashcards
sum()
sum()
Signup and view all the flashcards
len()
len()
Signup and view all the flashcards
max()
max()
Signup and view all the flashcards
min()
min()
Signup and view all the flashcards
sum()
sum()
Signup and view all the flashcards
index()
index()
Signup and view all the flashcards
count()
count()
Signup and view all the flashcards
sorted()
sorted()
Signup and view all the flashcards
tuple()
tuple()
Signup and view all the flashcards
len
len
Signup and view all the flashcards
get
get
Signup and view all the flashcards
Study Notes
List Functions
len()
returns the length of its argument list and is a standard Python library function- Example:
l=[1,2,3]
will return 3
- Example:
list()
returns a list created from a passed argument, which should be a sequence type (string, list, tuple, etc.)- If no argument is passed, it creates an empty list
- Example:
a=list("hello")
will output['h','e','l','l','o']
index()
returns the index of the first matched item from the list- Syntax:
list.index(item)
- Example: if
L=[13,18,11,16,18,14]
,L.index(18)
will output1
- Syntax:
append()
adds an item to the end of the list, taking exactly one element and returning no value- If the item is not in the list, a
ValueError
exception is raised - Syntax:
list.append(item)
- Example: For
colours=['red','green','yellow']
,colours.append('blue')
will output['red', 'green', 'yellow', 'blue']
- If the item is not in the list, a
extend()
adds multiple elements to a list- Syntax:
list.extend(list)
- It takes a list as an argument and appends all its elements to the original list
- Example: For
t1=['a','b','c']
andt2=['d','e']
,t1.extend(t2)
will output['a', 'b', 'c', 'd', 'e']
- Syntax:
insert()
inserts elements into a list- Both
append()
andextend()
insert elements at the end, whereasinsert()
inserts elements at a specific position - Syntax:
list.insert(index,item)
- Example: For
t=['a','e','u']
,t.insert(2,'i')
will output['a', 'e', 'i', 'u']
- Both
pop()
removes an item from the list and returns its value- It takes one optional argument, which is the index of the item to be deleted
- Syntax:
list.pop(index)
- It removes an element from the specified position and returns it
- With no index specified, it removes and returns the last item in the list
- Example: If
L=[1,2,3,4,5]
,val=L.pop(0)
will output1
and[2, 3, 4, 5]
- Example: If
L=[1,2,3,4,5]
,val=L.pop()
will output5
and[1, 2, 3, 4]
remove()
removes the first occurrence of a given item from the list- It takes one essential argument
- Syntax:
List.remove(value)
- The
remove()
function will report an error if the item isn't in the list - Example: If
L=['a','e','i','o','u']
,L.remove('a')
will output['e', 'i', 'o', 'u']
clear()
removes all items from the list, making it empty- It does not return anything
- Syntax:
list.clear()
- Example: If
l=[1,2,3,4]
,l.clear()
will output[]
count()
returns the number of times an item appears in the list- If the item is not in the list, it returns zero
- Syntax:
list.count(item)
- Example: If
L=[13,18,20,10,18,23]
,L.count(18)
will output2
, whileL.count(28)
will output0
reverse()
reverses the order of items in the list- It does not create a new list
- Syntax:
List.reverse()
- Example: If
l=[1,2,3,4]
,l.reverse()
will output[4, 3, 2, 1]
sort()
sorts the items of the list by default in increasing order- It does not create a new list
- Syntax:
list.sort([reverse=False/True])
- Example: If
L=[20,1,16,8,25]
,L.sort()
will output[1, 8, 16, 20, 25]
- To sort in descending order, use
L.sort(reverse=True)
, which outputs[25, 20, 16, 8, 1]
min()
,max()
, andsum()
functions return the minimum element, maximum element, and sum of elements in a list, respectively- Syntax:
min(list)
,max(list)
,sum(list)
- Example: If
L=[20,1,16,8,25]
,min(L)
is1
,max(L)
is25
, andsum(L)
is70
- Syntax:
Tuple Functions
len()
returns the number of elements in the tuple- Syntax:
len(tuple)
- Example: If
t=(1,2,3,4)
,len(t)
will output4
- Syntax:
max()
returns the element from the tuple with the maximum value- Values in the tuple must be of the same type
- Syntax:
max(tuple)
- Example: If
t=(2,90,45,8)
,print(max(t))
will output90
min()
returns the element from tuple with the minimum value- Values in the tuple must be of same type
- Syntax:
min(tuple)
- Example: If
t=(2,90,45,8)
,print(min(t))
will output2
sum()
takes a tuple as a parameter and returns the sum of its elements- Example: If
t=(51,2,91,6)
,sum(t)
outputs150
- Example: If
index()
returns the index of an existing element of a tuple- Syntax:
tuple.index(item)
- Example: If
t=(1,2,3,4)
,t.index(3)
outputs2
- Syntax:
count()
returns the count of an element in a given sequence- Syntax:
tuple.count(element)
- Example: If
t=(1,2,3,1,2,4,1,2,3)
,t.count(2)
outputs3
- Syntax:
sorted()
takes a tuple as an argument and returns a new sorted list with sorted elements- Syntax: sorted(tuple,[reverse=False])
- This sorts in ascending order; use
sorted(tuple,reverse=True)
for descending order - Example: If
t=(51,2,91,6)
,t1=sorted(t)
will output[2, 6, 51, 91]
tuple()
is used to create tuples from different types of values- Syntax: tuple(Sequence)
- Example: An empty tuple,
t=()
will output()
- Example:
t=tuple("abc")
will output('a', 'b', 'c')
Dictionary Functions and Methods
len()
gets the length of the dictionary- It counts the key-value pairs
- Syntax:
len(dictionary)
- Example: For
d={1:20,2:30,3:40,4:50}
,print(len(d))
outputs4
get()
retrieves an item given its key- An error is returned if the key is not present
- Syntax:
Dictionary.get(key)
- Example: Given
d={'name':"abhay","age":18,"class":12}
,d.get("age")
returns18
items()
returns all items in the dictionary as a sequence of (key, value) tuples- Syntax:
Dictionary.items()
- Example: Given
d={1:10,2:20,3:30,4:40}
,d.items()
outputsdict_items([(1, 10), (2, 20), (3, 30), (4, 40)])
- Syntax:
keys()
returns all keys in the dictionary as a sequence- Syntax:
dictionary.keys()
- Example: Given
d={1:10,2:20,3:30,4:40}
,d.keys()
outputsdict_keys([1, 2, 3, 4])
- Syntax:
values()
returns all the values in the dictionary as a sequence- Syntax:
dictionary.values()
- Example: Given
d={1:10,2:20,3:30,4:40}
,d.values()
will outputdict_values([10, 20, 30, 40])
- Syntax:
update()
merges key-value pairs from a new dictionary into the original, adding or replacing as needed- Items in the new dictionary are added to the old one, overriding items with the same keys
- Syntax:
dictionary.update(other dictionary)
- Example: If
d={1:10,2:20,3:30}
andd1={4:40,5:50}
,d.update(d1)
will result ind
becoming{1: 10, 2: 20, 3: 30, 4: 40, 5: 50}
andd1
remaining{4: 40, 5: 50}
fromkeys()
is used to create a new dictionary from a sequence- It contains all keys and a common value assigned to all the keys
- Syntax:
dict.fromkeys(key sequence, value)
Key sequence
is a Python sequence containing the keys for the new dictionary- Example:
nd=dict.fromkeys([2,4,6,8],100)
outputs{2: 100, 4: 100, 6: 100, 8: 100}
setdefault()
inserts a new key-value pair- If the given key is not already present in the dictionary, it is added with the specified value and returns it
- If the key is already present, the dictionary is not updated, and the current value associated with the key is returned
- Example: If
marks={1:45,2:67,3:90,4:87}
,marks.setdefault(5,89)
outputs89
, whilemarks.setdefault(4,89)
outputs87
pop()
removes and returns the dictionary element associated with the passed key- An error is raised if the mentioned key is not present in the dictionary
- Personalised messages can be displayed if a key is not in the dictionary
- Syntax:
dictionary.pop(key)
- Example: If
d={1:10,2:20,3:30,4:40}
,d.pop(2)
outputs20
- Note:
pop()
deletes the key-value pair for the mentioned key & returns the deleted value
popitem()
returns and removes the last inserted item in the dictionary, as a (key, value) tuple- If the dictionary is empty, calling
popitem()
raises an error - Syntax:
dictionary.popitem()
- Example: If
d={1:10,2:20,3:30,4:40}
, thend.popitem()
will output(4, 40)
- If the dictionary is empty, calling
del
is a statement used to delete a key-value pair from a dictionary- It does not return the deleted value
- Syntax:
del dictionary[key]
- Example: If
d={1:10,2:20,3:30,4:40}
,del d[2]
will result ind
becoming{1: 10, 3: 30, 4: 40}
clear()
removes all items from the dictionary, making it empty- Syntax:
dictionary.clear()
- Example: For
d={1:10,2:20,3:30,4:40}
,d.clear()
will result ind
becoming{}
- Syntax:
copy()
creates a shallow copy of a dictionary- Syntax:
dictionary.copy()
- Example: If
names={1:"abhay",2:"athira",3:"chitra"}
,names1=names.copy()
creates a shallow copy- such that,names1=names.copy()
thennames1[4]="dany"
will outputnames1
as{1: 'abhay', 2: 'athira', 3: 'chitra', 4: 'dany'}
andnames
as{1: 'abhay', 2: 'athira', 3: 'chitra'}
- Syntax:
sorted()
considers keys of the dictionary for sorting and returns a sorted list of dictionary keys- Syntax:
sorted(dictionary,reverse=False)
- It returns the keys of the dictionary sorted in descending order if
reverse
is set toTrue
- All keys must be of the same type for this function to work
- Example: If
d={90:"abc",45:"def",2:"pqr", 92:"hij"}
, thend1=sorted(d)
will output[2, 45, 90, 92]
- Syntax:
max()
,min()
, andsum()
functions on Dictionaries- Dictionary keys should be of homogenous type
sum()
can work with dictionaries having keys that are addition compatible- Example: If
d={1:10,2:90,80:50,75:9}
,min(d)
will output1
,max(d)
will output80
andsum(d)
will output158
String Built-in Functions
len()
returns the length of its argument string- Syntax:
len(string)
- Example:
len("hello")
will return5
(total number of characters in the string)
- Syntax:
capitalize()
returns a copy of the string with its first character capitalized- Syntax:
string.capitalize()
- Example:
'i love my India'.capitalize()
will return'I love my India'
- Syntax:
lower()
returns a copy of the string converted to lowercase- Syntax:
string.lower()
- Example:
"HELLO".lower()
will return'hello'
and"hi".lower()
will return'hi'
- Syntax:
upper()
returns a copy of the string converted to uppercase- Syntax:
string.upper()
- Example:
'hello'.upper()
will return'HELLO'
- Syntax:
count()
returns the number of occurrences of a substring in a string- Syntax:
string.count(sub[,start[,end]])
- Example:
'abracadabra'.count('ab')
counts the number of 'ab's in the whole string, returning 2
- Syntax:
find()
returns the lowest index in the string where the substring is found- Returns -1 if the substring is not found
- Syntax:
string.find(sub[,start[,end]])
- Example:
s="hi hello there hi hello"
, thens.find("hello")
returns3
ands.find("hello",10,30)
returns18
index()
returns the lowest index where the specified substring is found- A ValueError is raised if the substring is not found
- Same as
find()
butfind()
returns-1
if substring is not found andindex()
raises a ValueError - Syntax:
string.index(sub[,start[,end]])
- Example:
s='abcrabdcab'
, thens.index('ab')
returns0
isalnum()
returns True if characters in the string are alphanumeric or numbers, with at least one character; otherwise returns False- Syntax:
string.isalnum()
- Example:
s='abc123'
will returnTrue
;s='123'
will also returnTrue
, ands=''
will returnFalse
- Syntax:
isalpha()
returns True if all characters in a string are alphabetic with at least one character, and False otherwise- Syntax:
string.isalpha()
- Example:
s='abc123'
will returnFalse
;s='hello'
will returnTrue
- Syntax:
isdigit()
returns True if all the characters in the string are digits, with at least one character; False otherwise- Syntax:
string.isdigit()
- Example:
s='abc123'
will returnFalse
;s='123'
will returnTrue
- Syntax:
islower()
returns True if all cased characters are lowercase with at least one cased character; returns False otherwise- Syntax: string.islower()
- Example: Given
s='hello'
,s.islower()
returnsTrue
and ifs='HI'
,s.islower()
returnsFalse
.
isupper()
returns True if all cased characters in the string are uppercase with at least one cased character; it returns False otherwise- Syntax:
string.isupper()
- Example: Given
s='hello'
, ands1="A123""
, thens.isupper()
returnsFalse
ands1.isupper()
returns True
- Syntax:
title()
returns a title cased version of the string where all words start with uppercase characters and all remaining letters are in lowercase- Syntax:
string.title()
- Example:
'python is fun'.title()
returns'Python Is Fun'
- Syntax:
istitle()
returns True if the string is title cased (first letter of each word in uppercase and the rest in lowercase); False otherwise- Syntax:
string.istitle()
- Example:
'Computer Science'.istitle()
returnsTrue
- Syntax:
isspace()
returns True if there are only whitespace characters in the string, with at least one character; otherwise, returns False- Syntax:
string.isspace()
- Example: Given
s=" "
, printss.isspace()
outputsTrue
; and givess=""
, ands.isspace()
returnsFalse
- Syntax:
lstrip()
returns a copy of the string with leading whitespaces removed (whitespaces from the leftmost end)- Syntax:
string.lstrip()
- Example: Given
s=" python "
, thens.lstrip()
outputs"python "
- Syntax:
rstrip()
returns a copy of the string with trailing whitespaces removed (whitespaces from the rightmost end)- Syntax:
string.rstrip()
- Example: Given
s=" python "
, then“.rstrip()
outputs" python"
- Syntax:
strip()
returns a copy of the string with both leading and trailing whitespaces removed- Syntax:
string.strip()
- Example: Given
s=" python "
, thens.strip()
returns"python"
- Syntax:
startswith()
If the string starts with the substring sub, it returns true; otherwise, it returns false- Syntax:
string.startswith()
- Example: "abccd".startswith("ab") returns True
- Syntax:
endswith()
If the string ends with the substring sub, it returns true; otherwise, it returns false- Syntax:
string.endswith()
- Example: "abcd".endswith('d') returns True
- Syntax:
replace()
returns a copy of the string with all occurrences of substring old replaced by new string- Syntax:
string.replace(old,new)
- Example: "I work for you".replace(“work”,”care") returns "I care for you"
- Syntax:
join()
joins a string or character after each member of a string iterator- If the iterator is a list or tuple, the given string/character is joined with each member
- All members of the list or tuple must be strings; otherwise, Python raises an error
- Syntax:
string.join(String iterable)
- Example: "".join(“Hello") returns “Hell**o"
split()
splits a string based on a given string or character and returns a list containing split strings as members- Syntax:
string.split(string/char)
If no argument is provided then by default whitespace will be taken as a separator. - If an argument is provided, the line is divided into parts considering the given string / char as separator string / char is not included in the splitstrings
- Example:"I Love Python".split() output ['I','Love', 'Python']
- Syntax:
partition()
splits the string at the first occurrence of a separator and returns a tuple containing three items: the part before the separator, the separator itself, and the part after the separator if text = "I enjoy working with python" then text.partition(“working"), will return tuple (“I enjoy”,”working”,”with python”)- Syntax:
string.partition(separator/string)
- Syntax:
Studying That Suits You
Use AI to generate personalized quizzes and flashcards to suit your learning preferences.