how to have first 3 letters from string python code example
Example 1: how to remove first letter of a string python
s = "hello"
print s[1:]
Example 2: how to capitalize first letter in python
# To capitalize the first letter in a word or each word in a sentence use .title()
name = tejas naik
print(name.title()) # output = Tejas Naik