Skip to content

Commit 0b75e93

Browse files
Update README.md
1 parent 14f98f4 commit 0b75e93

1 file changed

Lines changed: 6 additions & 4 deletions

File tree

week_2/README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,15 @@ In programming, data types are crucial because they define the kind of data a va
3737

3838
You can find out the data type of any object by using the `type()` function:
3939

40-
```python
41-
x = 5
42-
print(type(x)) # Output: <class 'int'>
43-
4440
## Practice Questions and Resources
4541

4642
- **Practice Questions**: [HackerRank Python Practice](https://www.hackerrank.com/domains/tutorials/10-days-of-python)
4743
- **YouTube Channel**: [My Python Playlist](https://www.youtube.com/playlist?list=PLX1eV90xXed2wujMJKUdsWQu2UMS9ROGO)
4844

4945
Explore these resources to test your knowledge and enhance your programming skills!
46+
47+
```python
48+
x = 5
49+
print(type(x)) # Output: <class 'int'>
50+
51+

0 commit comments

Comments
 (0)