We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 73550f9 commit fca9affCopy full SHA for fca9aff
Status/Day 1.md
@@ -27,11 +27,7 @@ print ','.join(l)
27
---
28
29
**My Solution: Python 3**
30
-<<<<<<< HEAD
31
-=======
32
-
33
- **Using for loops**
34
- > > > > > > > 100-plus-Python-programming-exercises-extended/master
35
36
```python
37
for i in range(2000,3201):
@@ -41,17 +37,11 @@ print("\b")
41
```
42
38
43
39
44
45
-# <<<<<<< HEAD
46
47
40
- **Using generators and list comprehension**
48
49
50
print(*(i for i in range(2000, 3201) if i%7 == 0 and i%5 != 0), sep=",")
51
52
53
-> > > > > > > 100-plus-Python-programming-exercises-extended/master
54
55
# Question 2
56
57
### **Question:**
0 commit comments