Skip to content

Commit 53bcf28

Browse files
committed
added python class example
1 parent 81a42d1 commit 53bcf28

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed
+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
2+
#################################################
3+
# Python Class with Attribute Example
4+
#################################################
5+
6+
class class_with_Attribute:
7+
#class attribute Declaration
8+
type="Normal"
9+
10+
t1 = class_with_Attribute()
11+
t2 = class_with_Attribute()
12+
13+
#Getting Output of Class Attribute
14+
print (t1.type,t2.type)
15+
#Output would be
16+
# Normal Normal
17+
18+
#updating class Attribute value
19+
testing.type="Advance"
20+
21+
print (t1.type,t2.type)
22+
#Output would be
23+
# Advance Advance

0 commit comments

Comments
 (0)