标签: python
我有以下代码:
for x in range(10): for y in range(10): for z in range(10): print(x, y, z)
使用3 for循环有更快的方法吗?我尝试了范围(10)中的(x,y,z),但我无法使其工作