回答編集履歴

1

pep8

2018/02/23 22:19

投稿

YouheiSakurai
YouheiSakurai

スコア6142

test CHANGED
@@ -2,6 +2,6 @@
2
2
 
3
3
  def mufunc(start, end, multiple, non_multiple):
4
4
 
5
- print(*filter(lambda i: i % multiple == 0 != i% non_multiple, range(start, end + 1)))
5
+ print(*filter(lambda i: i % multiple == 0 != i % non_multiple, range(start, end + 1)))
6
6
 
7
7
  ```