Question: Trying to run a 32 bit-integer operation benchmark but nothing is being printed to screen: import time # Start timer start_time = time.time() # Integer
Trying to run a 32 bit-integer operation benchmark but nothing is being printed to screen:
import time
# Start timer start_time = time.time()
# Integer operations
result = 0
for i in range(10**10):
result += i
for i in range(5*10**9):
result *= i
for i in range(2*10**9):
result /= i
# Stop timer
end_time = time.time()
# Calculate and print execution time
execution_time = end_time - start_time
print("Integer operation benchmark execution time:", execution_time)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
