+ 1

What is an identation

15th Oct 2016, 1:39 PM
chandini
4 odpowiedzi
+ 1
Some blank space at the beginning of a line before you write something. The convention in Python is for one identation you use 4 blanks. example: if x = True: if y = False: print (x)
15th Oct 2016, 4:03 PM
Amarie
+ 1
indentation is space given at the start of the line to clearly indicate the code block and easy readability. indentation will help in segregating the code . example : after the if condition , use the space to distinguish the code from the condition.
16th Oct 2016, 2:31 PM
sanath k
sanath k - avatar
+ 1
Remember to use spaces instead tabs. ;)
21st Jan 2017, 12:06 AM
Reginaldo Junior
Reginaldo Junior - avatar
0
if you are having trouble on your computer, it's the TAB button on the far left of your keyboard.
19th Oct 2016, 8:37 AM
Nick Springham
Nick Springham - avatar