1- CONCAT: Joins two or more text strings into one.

Copy of Copy of Copy of class Car def init(self, brand, model) self.brand = brand self.model = model (14).png

2- LEFT: Extracts a specified number of characters from the left side of a text string.

Copy of Copy of Copy of class Car def init(self, brand, model) self.brand = brand self.model = model (16).png

3- RIGHT: Extracts a specified number of characters from the right side of a text string.

Copy of Copy of Copy of class Car def init(self, brand, model) self.brand = brand self.model = model (15) copy.png

4- MID: Extracts characters from the middle of a text string, starting at a specific position.

Copy of Copy of Copy of class Car def init(self, brand, model) self.brand = brand self.model = model (15).png