(category, start_letters='ABC')
| 408 | |
| 409 | # Get multiple samples from one category and multiple starting letters |
| 410 | def samples(category, start_letters='ABC'): |
| 411 | for start_letter in start_letters: |
| 412 | print(sample(category, start_letter)) |
| 413 | |
| 414 | samples('Russian', 'RUS') |
| 415 |
no test coverage detected