String (स्ट्रिंग) –
String (स्ट्रिंग) Python का एक Built-in Data Type (अंतर्निर्मित डेटा प्रकार) है, जिसका उपयोग Text Data (पाठ्य डेटा) को Store (संग्रहित), Process (प्रसंस्कृत) और Display (प्रदर्शित) करने के लिए किया जाता है।
String वास्तव में Characters (अक्षरों) का एक Sequence (क्रम) होती है। इसमें *Letters (A-Z, a-z), Numbers (0-9), Spaces (रिक्त स्थान), Symbols (@, #, $, %, &, ) और Special Characters (\n, \t आदि) शामिल हो सकते हैं।
Python में String को Single Quotes (' '), Double Quotes (" "), Triple Single Quotes (''' ''') या Triple Double Quotes (""" """) के अंदर लिखा जाता है।
note- String के प्रत्येक Character का अपना एक Unicode Code Point होता है।
English
A String is a Built-in Data Type in Python used to store, process, and display textual data.
A String is a sequence of characters that may contain letters, digits, spaces, symbols, and special characters.
In Python, Strings are written inside single quotes (' '), double quotes (" "), triple single quotes (''' '''), or triple double quotes (""" """).
Note: Each character in a string has its own Unicode Code Point.
Examples of Strings-