We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d0cdc49 commit b0d996dCopy full SHA for b0d996d
_episodes/07-cond.md
@@ -440,11 +440,11 @@ freeing us from having to manually examine every plot for features we've seen be
440
> > ~~~
441
> > for filename in filenames:
442
> > if filename.startswith('inflammation-'):
443
-> > large_files.append(file)
+> > large_files.append(filename)
444
> > elif filename.startswith('small-'):
445
-> > small_files.append(file)
+> > small_files.append(filename)
446
> > else:
447
-> > other_files.append(file)
+> > other_files.append(filename)
448
> >
449
> > print('large_files:', large_files)
450
> > print('small_files:', small_files)
0 commit comments