python啊

B2043 判断能否被 3,5,7 整除

请运用 ```python ``` 进行排版
by Dream_weavers @ 2022-01-19 14:22:41


无需进行多余的输出`input('输入任意一个整数:')`
by Computer1828 @ 2022-01-19 14:24:06


~~软件开发,笑死了,你学gui算了~~ 提示就是多余的输出,到最后学高精的时候答案30你输出个030就会错,就别提前面多一串中文了
by IaLWH @ 2022-01-19 14:29:31


@[_PluckDuck_](/user/486727) 你这个想象力以后去当作家挺合适 支持
by haraki @ 2022-01-19 15:07:34


```python x = int(input()) L = [3, 5, 7] for i in L: if x % int(i) == 0: print(i, end=' ') if x % 3 != 0 and x % 5 != 0 and x % 7 != 0: print('n') ``` 不要输出多余的话
by Programmer_1745 @ 2022-03-06 14:32:23


|