📐 This is the code for my ruler project 📏

            
  # This ruler program is by Nina Becket
  # The purpose of this program is that my ruler company 
      can print rulers easier 
  # It adds any numbers and gets their desired 
      ruler measurements.
    

def ruler_program (limit, counting_by): for number in range (counting_by,limit+1,counting_by): print(number) ruler_program(100,3) print("Measurements for Ruler!")