1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-08-21 16:41:24 +02:00

added string docs in python (#2623)

This commit is contained in:
Anjali Sharma
2022-10-21 20:49:00 +05:30
committed by GitHub
parent 21b4fb3349
commit c91a6ab1b3

View File

@@ -0,0 +1,10 @@
# String Methods
Python does not have a character data type, a single character is simply a string with a length of 1. Square bracket can be used to access elements of the string.
There are methods which can be used on a string to best utilize it's wide range of functionalities.
Below Given resources can be utilised to learn more about them.
<ResourceGroupTitle>Free Content</ResourceGroupTitle>
<BadgeLink colorScheme='red' badgeText='Watch' href='https://www.youtube.com/watch?v=Ctqi5Y4X-jA&t=11s'>Practical String Methods applications</BadgeLink>
<BadgeLink colorScheme='yellow' badgeText='Read' href='https://www.w3schools.com/python/python_ref_string.asp'>Comprehensive Study of String methods</BadgeLink>
<BadgeLink colorScheme='yellow' badgeText='Read' href='https://www.geeksforgeeks.org/string-slicing-in-python/'>String Slicing in Python</BadgeLink>