You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
start_time = time.time() # 开始时刻
for i in range(len(A)):
for j in range(len(B[0])):
for k in range(len(B)):
C[i][j] += A[i][k] * B[k][j]
stop_time = time.time() # 结束时刻
The text was updated successfully, but these errors were encountered:
Book1_Ch07 代码21 h段代码下面 缺少结束时间计时
The text was updated successfully, but these errors were encountered: