for i in range(3, 16, 3): quotient = i / 3 print(f"{i} divided by 3 is {int(quotient)}.") In this for loop, you were able to simply create a range of numbers ...
確定! 回上一頁