0% found this document useful (0 votes)
7 views10 pages

Python Built-in Methods Overview

The document provides a comprehensive list of methods available in Python for dictionaries, lists, sets, and strings, along with their descriptions. Each section details specific functionalities such as adding, removing, and manipulating elements within these data structures. This serves as a quick reference guide for Python developers to utilize built-in methods effectively.

Uploaded by

Rohit Kumar
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
7 views10 pages

Python Built-in Methods Overview

The document provides a comprehensive list of methods available in Python for dictionaries, lists, sets, and strings, along with their descriptions. Each section details specific functionalities such as adding, removing, and manipulating elements within these data structures. This serves as a quick reference guide for Python developers to utilize built-in methods effectively.

Uploaded by

Rohit Kumar
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd

Python includes following dictionary methods −

[Link] Methods with Description

1 [Link]()
Removes all elements of dictionary dict

2 [Link]()
Returns a shallow copy of dictionary dict

3 fromkeys(seq[, v])

Returns a new dictionary with keys from seq and value equal to v
(defaults to None).

4 [Link](key, default=None)
For key key, returns value or default if key not in dictionary

get(key[,d]) Returns the value of the key. If the key does not exist,
returns d (defaults to None).

5 dict.has_key(key)
Returns true if key in dictionary dict, false otherwise

6 [Link]()
Returns a list of dict's (key, value) tuple pairs

7 [Link]()
Returns list of dictionary dict's keys

8 [Link](key, default=None)
Similar to get(), but will set dict[key]=default if key is not already in dict

9 [Link](dict2)
[Link] Methods with Description

Adds dictionary dict2's key-values pairs to dict

10 [Link]()
Returns list of dictionary dict's values

pop(key[,d])

Removes the item with the key and returns its value or d if key is not
found. If d is not provided and the key is not found, it raises KeyError.

popitem() Removes and returns an arbitrary item (key, value). Raises


KeyError if the dictionary is empty.

setdefault(key[,d]) Returns the corresponding value if the key is in the


dictionary. If not, inserts the key with a value of d and returns d (defaults
to None).

update([other]) Updates the dictionary with the key/value pairs from


other, overwriting existing keys.
Python includes following list methods -
[Link] Methods with Description

1 [Link](obj)
Appends object obj to list

2 [Link](obj)
Returns count of how many times obj occurs in list

3 [Link](seq)
Appends the contents of seq to list

4 [Link](obj)
Returns the lowest index in list that obj appears

5 [Link](index, obj)
Inserts object obj into list at offset index

6 [Link](obj=list[-1])
Removes and returns last object or obj from list

7 [Link](obj)
Removes object obj from list

8 [Link]()
Reverses objects of list in place

[Link]([func])
Sorts objects of list, use compare func if given
Python includes following Set methods -
add() Adds an element to the set

clear() Removes all elements from the set

copy() Returns a copy of the set

difference() Returns the difference of two or more sets as a new set

difference_update() Removes all elements of another set from this set

discard() Removes an element from the set if it is a member. (Do nothing if


the element is not in set)

intersection() Returns the intersection of two sets as a new set

intersection_update() Updates the set with the intersection of itself and


another
isdisjoint() Returns True if two sets have a null intersection

issubset() Returns True if another set contains this set

issuperset() Returns True if this set contains another set

pop() Removes and returns an arbitrary set element. Raises KeyError if the set
is empty

remove() Removes an element from the set. If the element is not a member,
raises a KeyError

symmetric_difference() Returns the symmetric difference of two sets as a


new set

symmetric_difference_update() Updates a set with the symmetric difference


of itself and another

union() Returns the union of sets in a new set

update() Updates the set with the union of itself and others
Python includes the following built-in methods to manipulate
strings −
[Link] Function & Description

1 capitalize()
Capitalizes first letter of string

2 center(width, fillchar)
Returns a space-padded string with the original string centered to a total
of width columns.

3 count(str, beg= 0,end=len(string))


Counts how many times str occurs in string or in a substring of string if
starting index beg and ending index end are given.

4 decode(encoding='UTF-8',errors='strict')
Decodes the string using the codec registered for encoding. encoding
defaults to the default string encoding.

5 encode(encoding='UTF-8',errors='strict')
Returns encoded string version of string; on error, default is to raise a
ValueError unless errors is given with 'ignore' or 'replace'.

6 endswith(suffix, beg=0, end=len(string))


Determines if string or a substring of string (if starting index beg and
ending index end are given) ends with suffix; returns true if so and false
otherwise.

7 expandtabs(tabsize=8)
[Link] Function & Description

Expands tabs in string to multiple spaces; defaults to 8 spaces per tab if


tabsize not provided.

8 find(str, beg=0 end=len(string))


Determine if str occurs in string or in a substring of string if starting index
beg and ending index end are given returns index if found and -1
otherwise.

9 index(str, beg=0, end=len(string))


Same as find(), but raises an exception if str not found.

10 isalnum()
Returns true if string has at least 1 character and all characters are
alphanumeric and false otherwise.

11 isalpha()
Returns true if string has at least 1 character and all characters are
alphabetic and false otherwise.

12 isdigit()
Returns true if string contains only digits and false otherwise.

13 islower()
Returns true if string has at least 1 cased character and all cased
characters are in lowercase and false otherwise.

14 isnumeric()
Returns true if a unicode string contains only numeric characters and
false otherwise.

15 isspace()
Returns true if string contains only whitespace characters and false
otherwise.
[Link] Function & Description

16 istitle()
Returns true if string is properly "titlecased" and false otherwise.

17 isupper()
Returns true if string has at least one cased character and all cased
characters are in uppercase and false otherwise.

18 join(seq)
Merges (concatenates) the string representations of elements in
sequence seq into a string, with separator string.

19 len(string)
Returns the length of the string

20 ljust(width[, fillchar])
Returns a space-padded string with the original string left-justified to a
total of width columns.

21 lower()
Converts all uppercase letters in string to lowercase.

22 lstrip()
Removes all leading whitespace in string.

23 maketrans()
Returns a translation table to be used in translate function.

24 max(str)
Returns the max alphabetical character from the string str.

25 min(str)
Returns the min alphabetical character from the string str.
[Link] Function & Description

26 replace(old, new [, max])


Replaces all occurrences of old in string with new or at most max
occurrences if max given.

27 rfind(str, beg=0,end=len(string))
Same as find(), but search backwards in string.

28 rindex( str, beg=0, end=len(string))


Same as index(), but search backwards in string.

29 rjust(width,[, fillchar])
Returns a space-padded string with the original string right-justified to a
total of width columns.

30 rstrip()
Removes all trailing whitespace of string.

31 split(str="", num=[Link](str))
Splits string according to delimiter str (space if not provided) and returns
list of substrings; split into at most num substrings if given.

32 splitlines( num=[Link]('\n'))
Splits string at all (or num) NEWLINEs and returns a list of each line with
NEWLINEs removed.p>

33 startswith(str, beg=0,end=len(string))
Determines if string or a substring of string (if starting index beg and
ending index end are given) starts with substring str; returns true if so and
false otherwise.

34 strip([chars])
Performs both lstrip() and rstrip() on string.
[Link] Function & Description

35 swapcase()
Inverts case for all letters in string.

36 title()
Returns "titlecased" version of string, that is, all words begin with
uppercase and the rest are lowercase.

37 translate(table, deletechars="")
Translates string according to translation table str(256 chars), removing
those in the del string.

38 upper()
Converts lowercase letters in string to uppercase.

39 zfill (width)
Returns original string leftpadded with zeros to a total of width characters;
intended for numbers, zfill() retains any sign given (less one zero).

40 isdecimal()
Returns true if a unicode string contains only decimal characters and false
otherwise.

You might also like