Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
#!/usr/bin/env python3 exit_no_yes = "n" counter = 0 while exit_no_yes != "y": print(counter) exit_no_yes = input("Выйти из цикла?: ") if exit_no_yes == "y": break else: counter += 1
except KeyboardInterrupt: print("[Server stopped") s.close() break
str = 'Python' print (str.split('t'))