From c91a6ab1b3eef15bb78aeaa6e8fe39a4b8fbb072 Mon Sep 17 00:00:00 2001 From: Anjali Sharma Date: Fri, 21 Oct 2022 20:49:00 +0530 Subject: [PATCH] added string docs in python (#2623) --- .../content/100-python-basics/106-string-methods.md | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 content/roadmaps/108-python/content/100-python-basics/106-string-methods.md diff --git a/content/roadmaps/108-python/content/100-python-basics/106-string-methods.md b/content/roadmaps/108-python/content/100-python-basics/106-string-methods.md new file mode 100644 index 000000000..88690b73c --- /dev/null +++ b/content/roadmaps/108-python/content/100-python-basics/106-string-methods.md @@ -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. + +Free Content +Practical String Methods applications +Comprehensive Study of String methods +String Slicing in Python \ No newline at end of file