79103560

Date: 2024-10-18 20:26:12
Score: 3
Natty:
Report link

I know this is coming a bit late and this threat might not be active anymore but you could probably do without most of the variables, couldn't you?

for i in range(1, 10):
    if i <= 6:
        stars = i
    else: 
        stars = 10 - i

    print("* " * stars)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: k-romir