How to get First Character in Python String?

Опубликовано: 13 Октябрь 2023
на канале: ProgramGuru
22
1

To get the first character in a string in Python, you can use "string indexing" using square brackets. Specify the index of the character in square brackets, after the string variable. This expression returns the character in the string, at the index specified in the square brackets. Since we need the first character, we need to specify the index of the first character, which is 0.

References
=========
Python tutorial to get first character in string
https://www.tutorialkart.com/python/p...

Python tutorials
https://www.tutorialkart.com/python/