write a program to print each letter of word 'information' using series object in python pandas
Answers
Answered by
1
Answer:
pls mark it brainliest if u like
Explanation:
Hello sir,
here u go-
import pandas as pd
series1 = pd.Series(['information'])
print("Original Series:")
result = series1.map(lambda x: len(x))
print("\nNumber of characters in each word in the said series:")
print(result)
Similar questions