sponsor

sponsor

Slider

Recent Tube

Business

Technology

Life & style

Games

Sports

Fashion

» » Python Indenting Code

Python में Code indentation को काफी महत्व दिया गया है | Python में Code Indetation का इस्तेमाल functions, classes, Loops और control statements के लिए किया जाता है |
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

«
Next
Newer Post
»
Previous
Older Post

No comments:

Leave a Reply