Challenge: Generator Functions
Glissez pour afficher le menu
Tâche
Glissez pour commencer à coder
- Use the
yieldkeyword to return each log line one by one as the function iterates through the list. - Do not create or return a new list, yield each line directly from the input list.
- The function should be memory efficient and work with any length of input list.
- Test your function by iterating over
read_log_lines(log_lines)and printing each line. - Expected results:
2024-06-01 12:00:01 INFO User logged in
2024-06-01 12:00:03 ERROR Invalid password attempt
2024-06-01 12:00:05 INFO User logged out
2024-06-01 12:00:07 WARN Disk space low
2024-06-01 12:00:10 INFO User logged in
Solution
Tout était clair ?
Merci pour vos commentaires !
Section 5. Chapitre 5
Demandez à l'IA
Demandez à l'IA
Posez n'importe quelle question ou essayez l'une des questions suggérées pour commencer notre discussion
Section 5. Chapitre 5