layout: default title: “CT-206 Project 1 - Python Scripting” —
🐍 CT-206 Project 1 - Python Scripting
Course: CT-206 Scripting Languages
Semester: Spring 2021
Part 1: Python Review
- Identifiers: Case sensitive.
- Variable rules: Cannot begin with a number.
- Operators:
- Power:
**
- Floor division:
//
- Modulus example:
22 % 3 = 1
- Power:
- String slicing:
```python str = “hello” print(str[:2]) # output: he