length function in python code example
Example 1: len python
mystring = 'Hello'
len(mystring)
mylist = ['Hello', 'Goodbye', 'Morning']
len(mylist)
Example 2: python length
my_string = "Hello World"
my_list = ["apple", "banana", "orange"]
print(len(my_string))
print(len(my_list))
Example 3: python lcs length
def lcs(X, Y):
n = len(Y)
m = len(X)
L = [[None]*(n + 1) for i in range(m + 1)]
for i in range(m + 1):
for j in range(n + 1):
if i == 0 or j == 0 :
L[i][j] = 0
elif X[i-1] == Y[j-1]:
L[i][j] = L[i-1][j-1]+1
else:
L[i][j] = max(L[i-1][j], L[i][j-1])
return L[m][n]
Example 4: get length from variable python
len(var)
len() is a built-in function in python. You can use the len() to get the length of the given string, array, list, tuple, dictionary, etc. Value: the given value you want the length of. Return value a return an integer value i.e. the length of the given string, or array, or list, or collections.