top of page
Unit 1 Lesson 2: Basic Data Types
In python, data is classified into data types to determine the types of operations that can be done on them.
Strings are a sequence value with a collection of one or more characters. They are found in between single, double, or triple quotes. (ex: 'These' | "are" | '''strings''')
concatenation


bottom of page