CentreForDigitalHumanities / CentreForDigitalHumanities/programming-in-python
Exercise 7.1.3 should be simplified
Offen
#17
1 Kommentar
0 Reaktionen
1 zugewiesene Person
Beansprucht von @JeltevanBoheemen
Auf GitHub ansehen
- Vorherrschende Sprache
- Jupyter Notebook
- Sterne
- 1
- Forks
- 1
- PR-Merge-Kennzahlen
- Keine gemergten PRs in 30 T.
Beschreibung
Exercise 7.1.3 includes the lines:
```
first, *rest = list(words)
text = first
for word in rest:
```
Students are not familiar with this syntax and it should be replaced with:
```
text = words[0]
for word in words[1:]:
```
Also, parameter names `word` or `characters` make more sense since the function is invoked with a single word.
Beitragsleitfaden
Bewertung
Dieses Issue wurde noch nicht bewertet.