我有兴趣了解如何实现Python的跟踪模块,以跟踪乘法表的执行并打印其带注释的结果。
我研究了与trace()和乘法程序有关的Python文档和互联网资源,但是我空手而归。
import sys
import trace
tracer = trace.Trace(
ignoredirs=[sys.prefix, sys.exec_prefix],
trace=0,
count=1)
def print_multiples(n, high):
for i in range(1, high+1):
print(n * i, end=" ")
print()
def print_mult_table(high):
""" Return a multiplication table with n rows and columns."""
for i in range(1, high+1):
print_multiples(i, high)
print_mult_table(7)
r = tracer.results()
r.write_results(show_missing=True, coverdir=".")
同样,我想弄清楚如何实现Python的跟踪模块以跟踪乘法表的执行并打印带注释的结果。