要求 输入一个数字按回车就可以查询出所有这个数字的乘法算式 帮个忙 谢谢!
for i in range(1, 10): for j in range(1, i+1): print(f"{j}*{i}={i*j}", end="\t") print()
这个环节对应 ATM对象的各个操作