Welcome to DataDrift with Us! This repository documents our journey through learning Python from the basics. Below is a summary of what weβve covered so far.
- Introduction to Python
- Using Google Colab
- GitHub Basics
- Python Syntax
- Comments (Single-line and Multi-line)
- Variables
- Data Types
- F-Strings
- Taking Input using
input()
- Display Output with
print()
- Checking Data Types using
type()
- Typecasting: Converting between
str
,int
, andfloat
- Operators:
+
,-
,*
,/
,%
,//
- Conditional Statements:
if
,else
,elif
- Logical Operators:
and
,or
,not
- String Indexing and Slicing
- Slice Syntax:
[start:end:step]
for
Loopswhile
Loops- Loop Control Statements:
break
β exit the loopcontinue
β skip to the next iterationpass
β do nothing (placeholder)