79204513

Date: 2024-11-19 17:49:21
Score: 2.5
Natty:
Report link

Does this do what you want?

numbers = [3, -1, 4, -5, 6, -2]
for num in numbers:
    if num < 0:
        print("Skipping negative number:", num)
        continue
    print("Processing number:", num)
    print("Finished processing:", num)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: cnash