Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

Basic String Functions in python

# Basic Functions
len('turtle') # 6

# Basic Methods
'  I am alone '.strip()               # 'I am alone' --> Strips all whitespace characters from both ends.
'On an island'.strip('d')             # 'On an islan' --> # Strips all passed characters from both ends.
'but life is good!'.split()           # ['but', 'life', 'is', 'good!']
'Help me'.replace('me', 'you')        # 'Help you' --> Replaces first with second param
'Need to make fire'.startswith('Need')# True
'and cook rice'.endswith('rice')      # True
'bye bye'.index('e')                  # 2
'still there?'.upper()                # STILL THERE?
'HELLO?!'.lower()                     # hello?!
'ok, I am done.'.capitalize()         # 'Ok, I am done.'
'oh hi there'.find('i')               # 4 --> returns the starting index position of the first occurrence
'oh hi there'.count('e')              # 2
Comment

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))
Comment

PREVIOUS NEXT
Code Example
Python :: how to remove some indexes from a dataframe in python 
Python :: django for beginners 
Python :: date and time using tkinter 
Python :: why is c faster than python 
Python :: python int to ascii string 
Python :: pybase64 tutorial 
Python :: spark mllib tutorial 
Python :: dfs algorithm 
Python :: dictionary get all values 
Python :: string pythhon 
Python :: .save() in django 
Python :: adding array to array python 
Python :: firestore search query flutter 
Python :: oops python self and making an object of a class and calling function 
Python :: python string length 
Python :: python double underscore methods 
Python :: add one element to tuple python 
Python :: function definition python 
Python :: mod in python 
Python :: sys.argv python example 
Python :: bar break matplotlib 
Python :: pd column to one hot vector 
Python :: python str and repr 
Python :: what is a rare earth 
Python :: Paraphrasing text with transformers library 
Python :: sarah 
Python :: Remove all duplicates words from a given sentence 
Python :: databases not showing in odoo 13 
Python :: or without file pythonmodules.txt 
Python :: python code to open facebook and login with username and password 
ADD CONTENT
Topic
Content
Source link
Name
2+5 =