Skip to content

Commit 2f30310

Browse files
authored
removed unnecesary call to str()
1 parent add689b commit 2f30310

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

_extras/extra_challenges.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ A collection of challenges that have been either removed from or not (yet) added
2525
> start_year = 1977
2626
> end_year = 2002
2727
> for year in range(start_year, end_year+1):
28-
> print(str(year))
28+
> print(year)
2929
> ~~~
3030
> {: .language-python}
3131
>

0 commit comments

Comments
 (0)