You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# In this function, "for e in info" seems to have 2 branches:
def branches_2():
if x:
for e in info:
print(1)
else:
print(2)
# In this function, "for e in info" seems to have 3 branches:
def branches_3():
for y in a:
if x:
for e in info:
print(1)
else:
print(2)
This code has an anomaly:
The text was updated successfully, but these errors were encountered: