Python Strings #
In Python, a string is a sequence of characters that is used to represent textual data. You can create a string in Python by enclosing a sequence of characters in single quotes ' or double quotes ", like so:
my_string = "Hello, World!"
Exercise #
- Create a variable
nameand assign your name to it.
Getting Started with Python
Data Types
Python Functions
Statements in Python
Basic Debugging in Python
Basic Algorithm
Object-Oriented Programming
Error Handling
Intermediate Algorithm
Python Modules