Answers for "how to have first 3 letters from string python"

17

how to remove first letter of a string python

s = "hello"
print s[1:]
Posted by: Guest on August-05-2020
4

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
Posted by: Guest on November-22-2020

Code answers related to "how to have first 3 letters from string python"

Code answers related to "Javascript"

Browse Popular Code Answers by Language