Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

all string methods in python

# Look into this Python documentation link
# https://docs.python.org/3/library/stdtypes.html#string-methods
# if not, use dir for a sting object
stuff = 'Hello World!'
print(type(stuff))
print(dir(stuff))
Source by www.py4e.com #
 
PREVIOUS NEXT
Tagged: #string #methods #python
ADD COMMENT
Topic
Name
6+3 =