(rnd)
| 59 | |
| 60 | |
| 61 | def make_person(rnd): |
| 62 | if 0 <= rnd <= 3: |
| 63 | return StreetPerson("Bob") |
| 64 | elif 4 <= rnd <= 6: |
| 65 | return CollegeStudent("Bobby") |
| 66 | elif 7 <= rnd <= 9: |
| 67 | return RustProgrammer("Robert") |
| 68 | else: |
| 69 | return SuperCompSciStudent("Bert") |
| 70 | |
| 71 | |
| 72 | def comp_sci_student_greeting(student): |
no test coverage detected