[CT421]: Assignment 1 nothing

This commit is contained in:
2025-02-19 01:24:13 +00:00
parent 4b950e1f77
commit e036371807
2 changed files with 3420 additions and 100002 deletions

File diff suppressed because it is too large Load Diff

View File

@ -21,12 +21,11 @@ def plot_fitness_trends(file_path):
plt.show() plt.show()
# Main function
def main(): def main():
parser = argparse.ArgumentParser(description='Plot fitness trends from a TSV file.') parser = argparse.ArgumentParser(description='Plot fitness trends from a TSV file.')
parser.add_argument('file_path', type=str, help='Path to the TSV file') parser.add_argument('file_path', type=str, help='Path to the TSV file')
args = parser.parse_args() args = parser.parse_args()
plot_fitness_trends(args.file_path) plot_fitness_trends(args.file_path)
if __name__ == "__main__": if __name__ == "__main__":