python,for循环输出1-100之间被3除余数为1的数
你题目的解答代码如下:
for x in range(1, 101): if x%3==1: print(x)
如有帮助,请点击我的回答下方的【采纳该答案】按钮帮忙采纳下,谢谢!