Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 637addc

Browse files
init
1 parent 4200b54 commit 637addc

File tree

3 files changed

+51
-11
lines changed

3 files changed

+51
-11
lines changed

‎Day 1/notes and codes.md‎

Lines changed: 28 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,12 @@
1212
|S.No.|topic name|Navigate|
1313
|--|--|--|
1414
|1|Intro to python|[Click Here](#intro-to-python)|
15-
|2|Data Types in Python|[Click Here](#data-types-in-python)|
16-
|2-1|String Data Type|[Click Here](#2-1-string-data-type)|
17-
|2-2|Numeric Data Type|[Click Here](#2-2-numeric-data-type)|
18-
|2-3|Boolean & None Data Type|[Click Here](#2-3-boolean-and-none-data-type)|
19-
|2-4|Collection Data Type|[Click Here](#2-4-collection-data-type)|
15+
|2|Defining a variable|[Click Here](#defining-a-variable)|
16+
|3|Data Types in Python|[Click Here](#data-types-in-python)|
17+
|3-1|String Data Type|[Click Here](#3-1-string-data-type)|
18+
|3-2|Numeric Data Type|[Click Here](#3-2-numeric-data-type)|
19+
|3-3|Boolean & None Data Type|[Click Here](#3-3-boolean-and-none-data-type)|
20+
|3-4|Collection Data Type|[Click Here](#3-4-collection-data-type)|
2021

2122

2223
## Intro to Python
@@ -36,6 +37,23 @@ Python is widely used in web development, automation, data analysis, machine lea
3637

3738
**[🔝Index](#index)**
3839

40+
---
41+
42+
## Defining a Variable
43+
44+
In Python a variable can be defined by taking name for a variable and then assign it some value using '=' to better understand it refer to the code block below,
45+
46+
Example:
47+
```python
48+
x=23 # here x is the variable with 23 value assigned to it
49+
name='shubham' # here "name" is the variable with 'shubham' value assigned to it
50+
print(x) # o/p : 23
51+
print(name) # o/p : shubham
52+
```
53+
To better understand it try running this code multiple time with different values.
54+
55+
**[🔝Index](#index)**
56+
3957
---
4058
## Data Types in Python
4159

@@ -51,7 +69,7 @@ Each type has unique properties and methods, and Python automatically manages me
5169

5270
**[🔝Index](#index)**
5371

54-
### 2-1 String Data Type
72+
### 3-1 String Data Type
5573

5674
Strings (`str`) in Python represent sequences of Unicode characters. Strings are **immutable**, meaning once created, they cannot be changed directly.
5775

@@ -71,7 +89,7 @@ print(greeting) # Output: Hello, Alice!
7189

7290
**[🔝Index](#index)**
7391

74-
### 2-2 Numeric Data Type
92+
### 3-2 Numeric Data Type
7593

7694
Python has three main numeric types:
7795

@@ -96,7 +114,7 @@ print(a / b) # Float division, output: 3.3333333333333335
96114

97115
**[🔝Index](#index)**
98116

99-
### 2-3 Boolean and None Data Type
117+
### 3-3 Boolean and None Data Type
100118

101119
**Boolean (bool)**
102120
- Represents truth values: True and False.
@@ -127,9 +145,9 @@ if result is None:
127145

128146
**[🔝Index](#index)**
129147

130-
### 2-4 Collection Data Type
148+
### 3-4 Collection Data Type
131149

132-
### 2-4 Collection Data Type
150+
### 3-4 Collection Data Type
133151

134152
Python provides several built-in collection data types that group multiple values into a single variable. These collections are versatile and widely used to store, organize, and manipulate data.
135153

‎Day 2/notes and codes.md‎

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Welcome ! to *Day 2* of Python for beginners series
2+
-by **[Shubham](https://github.com/Shubham-S151)** from `Bit and Pi` YouTube Channel.
3+
4+
***Channel Link :*** [![YouTube](https://img.shields.io/badge/YouTube-Bit_and_Pi-red?logo=youtube&style=for-the-badge)](https://www.youtube.com/@BitandPi)
5+
6+
#### Connect to the author and teacher here :
7+
[![Email](https://img.shields.io/badge/Email-%23D14836.svg?style=for-the-badge&logo=gmail&logoColor=white)](mailto:shubhamsharma15104@gmail.com)
8+
[![Portfolio](https://img.shields.io/badge/Portfolio-%23000000.svg?style=for-the-badge&logo=firefox&logoColor=white)](https://sites.google.com/view/shubham-sharma-portfolio/home)
9+
[![LinkedIn](https://img.shields.io/badge/LinkedIn-%230077B5.svg?style=for-the-badge&logo=linkedin&logoColor=white)](https://www.linkedin.com/in/shubham-data-science)
10+
11+
## Index
12+
|S.No.|topic name|Navigate|
13+
|--|--|--|
14+
|||[Click Here](#)|
15+
||||
16+
||||
17+
||||
18+
||||
19+
20+
**[🔝Index](#index)**

‎README.md‎

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
1+
<img src="https://github.com/Bit-and-Pi/ignore/blob/main/20241229_085931_0000%20-%20Copy.png" alt="Shubham" width="200" align="left">
2+
13
# 🐍 Python for Beginners - YouTube Series
24

3-
Welcome to the official repository for the **Python for Beginners** video series on YouTube! 🚀
5+
Welcome to the official repository for the **Python for Beginners** video series on YouTube!
46
This playlist is designed to help absolute beginners learn Python from scratch, with clear explanations and hands-on examples.
57

68
---

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /