String Data Type in python Class 11 Notes
String Data Type in python WHAT ARE STRINGS? In Python, a string is a sequence of characters, enclosed in either single quotes (”) or double quotes (“”). Strings are immutable, which means once a string is created, its contents cannot be changed. Here is an example of a string: my_string = “Hello, World!” You can … Read more