👉 In programming, a string is a sequence of characters enclosed in single quotes. It can be used to store and manipulate text data, such as user input or file names. Here's an example of how you might define a variable that holds a string: ```python my_string = "Hello, world!" ``` The `my_string` variable now contains the string "Hello, world!".