Skip to content

Commit 49e4508

Browse files
committed
Modify continue.py
1 parent 4dd896b commit 49e4508

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

flow/other_statement/continue.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
'nightmare',
66
'contribution',
77
'mass']
8-
n = 10
8+
n = 8
99

1010
print('list:', strings)
11-
print('10 letters or short words:')
11+
print(n, 'letters or short words:')
1212
for w in strings:
13-
if len(w) > 10:
13+
if len(w) > n:
1414
continue
1515
print(w)

0 commit comments

Comments
 (0)