''' Honor Series - Data Science Fall 2020 Mini-Assignment #1 Sample Code ''' def main(): num_entries = int(input("How many total entries in the database?\n")) num_women = int(input("How many of them involved women?\n")) pct_women = num_women / num_entries num_men = num_entries - num_women print(round(pct_women * 100, 2), "% of incidents involved women.", sep = "") print(num_men, "incidents involved men.") main()