Skip to content

Commit

Permalink
Minor Fixes to data.final.ranges dan limit
Browse files Browse the repository at this point in the history
  • Loading branch information
brotherzhafif committed Oct 12, 2024
1 parent 8166e8a commit d7ac5a4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions FrequencyTable.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,11 +69,11 @@ def Populate(self):
frequency.append(current_frequency)

# Adding The Number Range From Both Frequency
current_data_range = old_number , " ~ " , current_number
current_data_range = f"{old_number} ~ {current_number}"
data_range.append(current_data_range)

# Adding Data Range Limit Of The Class Frequency
current_data_limit = current_bot_limit , " ~ " , current_top_limit
current_data_limit = f"{current_bot_limit} ~ {current_top_limit}"
data_limit.append(current_data_limit)

# Adding Data Midpoint of The Class Frequency
Expand Down
3 changes: 2 additions & 1 deletion Main.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,5 +47,6 @@
tablefmt='pipe'
)

print(table)
# print(table)
print(data.final.ranges)

0 comments on commit d7ac5a4

Please sign in to comment.