i = np.random.randiant(10)
时间: 2024-05-29 11:14:30 浏览: 91
There seems to be a typo in the code you provided. It should be `i = np.random.randint(10)`. This will generate a random integer between 0 and 9 (inclusive) and assign it to the variable `i`.
阅读全文