Modified prints to f-string

This commit is contained in:
Aviv Faraj 2021-09-07 09:35:30 -04:00 committed by GitHub
parent 132e4952ee
commit c0e5071e79
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -120,6 +120,6 @@ if __name__ == "__main__":
v_dis = str(max_height(init_vel, angle))
t_time = str(total_time(init_vel, angle))
print("Results: ")
print("Horizontal Distance: " + h_dis + " [m]")
print("Maximum Height: " + v_dis + " [m]")
print("Total Time: " + t_time + " [s]")
print(f"Horizontal Distance: {h_dis} [m]")
print(f"Maximum Height: {v_dis} [m]")
print(f"Total Time: {t_time} [s]")