for i in range(2,m)
时间: 2024-05-21 16:17:42 浏览: 51
Python中的for i in range(range()函数的for循环)如何使用,详细介绍
There seems to be an error in the code you provided. The range function should have two arguments, with the first argument being the starting value and the second argument being the ending value (exclusive). However, in your code, there is a comma between the 2 and m, which is causing a syntax error. Can you please provide more context or correct the code so that I can assist you better?
阅读全文