Skip to content

Fixed typos in some folders and files. #194

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 18 additions & 21 deletions Course Introduction/Introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,27 +4,24 @@ This repository walks you through the Object Oriented Programming concepts in py

The course plan is as shown in the repository. There are four lessons which govern the flow of the course. It is highly recommended to refer to online resources for a detailed study about the mentioned topics which have been briefly covered.

For the Tasks study in depth about the problem statements, conduct online research about various available modules and then start coding. Coding solutions have been provided in the resources folder.

For the Tasks study in depth about the problem statements, conduct online research about various available modules and then start coding. Coding solutions have been provided in the resources folder.

## Course Breakdown:



* Lesson 1: Introduction To Python
* Download
* Installation
* About Python
* Lesson 2: Using Functions
* About Functions
* Python Standard Library
* Inbuilt Functions
* Task 1
* Task 2
* Lesson 3: Introduction To OOP
* About
* Lesson 4: OOP Implementation
* Task 1
* Task 2
* Lesson 5: Web Sraping
* Web Scraping - Introduction
- Lesson 1: Introduction To Python
- Download
- Installation
- About Python
- Lesson 2: Using Functions
- About Functions
- Python Standard Library
- Inbuilt Functions
- Task 1
- Task 2
- Lesson 3: Introduction To OOP
- About
- Lesson 4: OOP Implementation
- Task 1
- Task 2
- Lesson 5: Web Scraping
- Web Scraping - Introduction
26 changes: 17 additions & 9 deletions Examples/String Manipulation/StringSlicing.py
Original file line number Diff line number Diff line change
@@ -1,20 +1,28 @@
word = "photosynthesis"

#otosy
print(word[2:7]) #strts from 2 and ends before 7
print(word[2:7]) # Starts from index 2 and ends before index 7

#photo
print(word[:5]) #ends before 5
print(word[:5]) # Ends before index 5

#photosynthesis
print(word[:]) #print whole string
print(word[:]) # Print whole string

#ptyhi
print(word[::3]) #print 0 and multiple of 3 afterwards
print(word[::3]) # Print index 0 and multiples of 3 afterwards

#tyhi
print(word[3::3]) #print 3 and multiple of 3 afterwards
print(word[3::3]) # Print index 3 and multiples of 3 afterwards

#photosynthesi
print(word[:-1]) #ends before -1
print(word[:-1]) # Ends before index -1

#photosy
print(word[:-7]) #ends before -7
print(word[:-7]) # Ends before index -7

#sisehtnysotohp
print(word[::-1]) #print string in reverse
print(word[::-1]) # Print reversed string

#sotohp
print(word[5::-1]) #print reverse till 5
print(word[5::-1]) # Print reversed string till index 5
File renamed without changes.