04 Python uses Identation to indicate the code block
The spaces at the beginning of a code line is called as Identation. In other Programming languages Identation or Spaces in the beginning of the code if just for readability but In Python it makes difference. The indentation in Python is very important. Python uses indentation to indicate a block of code. For Example: if 5 > 2:  print("Five is greater than two!") In above example when...
0 Comments 0 Shares 0 Reviews
Sponsored