aboutsummaryrefslogtreecommitdiff
path: root/python/1-multiples35.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/1-multiples35.py')
-rw-r--r--python/1-multiples35.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/python/1-multiples35.py b/python/1-multiples35.py
deleted file mode 100644
index 6a92369..0000000
--- a/python/1-multiples35.py
+++ /dev/null
@@ -1,9 +0,0 @@
-# -*- coding:utf-8 -*-
-
-sum35 = 0
-i = 0
-while i < 1000:
- if i % 3 == 0 or i % 5 == 0:
- sum35 += i
- i += 1
-print(sum35)