Skip to content

Commit 92567c7

Browse files
authored
Update README.md
1 parent 55c0e92 commit 92567c7

File tree

1 file changed

+21
-1
lines changed

1 file changed

+21
-1
lines changed

README.md

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,26 @@
11
# Python-Interview-Questions
2-
- Capgemini
32

3+
- ##### Introduction
4+
- ##### Data Types
5+
- ##### Loops
6+
- ##### Built in Data Structure
7+
- ##### List
8+
- ##### Tuple
9+
- ##### Set
10+
- ##### Frozenset
11+
- ##### Dictionary
12+
- ##### Ordered Dictionary
13+
- ##### _String_
14+
- ##### Function
15+
- ##### Inheritance
16+
- ##### Classes & Objects
17+
- ##### Exceptions
18+
19+
20+
21+
22+
23+
- Capgemini
424
#### What is a method?
525

626
A method is a function on some object x that you normally call as x.name(arguments...). Methods are defined as functions inside the class definition: class C: def meth (self, arg): return arg*2 + self.attribute.

0 commit comments

Comments
 (0)