Re: [Tutor] if inside if help python
> I have question if we make if statement inside if like cprogramming below > how to do in python Indentation is the key here. It is very simple. x=1 y=2 if x == 1: print "inside first if" if x == 2: print "inside second if" -- Senthil ___
[Tutor] if inside if help python
I have question if we make if statement inside if like cprogramming below how to do in python int x-1 , y=2; if (x==1) { printf(" inside first if "); if (y==2) { printf ("inside second if "); } } -- Mustafa Akkoc __