How to select duplicated code from if-statement?

48 Views Asked by At

I have the following algorithm:

if <some1>:
   h += 1
elif <some2>:
   h += 0.5
   i += 1
else:
   i += 1

Is it possible to do i += 1 just once?

3

There are 3 best solutions below

3
On BEST ANSWER

I think the logic you want to express is:

if <some1>:
   h += 1
else:
   i += 1
   if <some2>:
      h+= 0.5

Though it doesn't save you a whole lot.

0
On

Yes, you can move it out to the else section:

if <some1>:
   h += 1
else:
   i += 1
   if <some2>:
      h += 0.5
   else:
0
On
if <some1>:
   h += 1
else 
   i +=1
   if <some2>:
     h += 0.5 

Please check it out