Python Module 03-15 Lab 3-3 Answer

preview_player
Показать описание

Рекомендации по теме
Комментарии
Автор

Please note that the code entered at 2:20:

if(input("Type 'exit' to quit this program: ")): break

Should be:

if(input("Type 'exit' to quit this program: ").lower() == 'exit'): break

randalroot