Python में curly braces({}) की जगह code indentation का इस्तेमाल किया जाता है |
Python में जब code indentation में colon(:) या delimiter दिया जाता है तब automatically अगले line पर interpreter द्वारा tab( ) दिया जाता है |
Function
Source Code :
def func():
a = 5
print(a)
func()
Output :
5
For Loop
Source Code :
list = [1, 5, 8, 9]
for i in list:
print(i)
Output :
1 5 8 9
Class
Source Code :
class myClass:
def func():
a = 5
print(a)
myClass.func()
Output :
5







No comments: