“Как выйти из программы на Python” Ответ

Python Exit Program

#Exit everywhere with error message
import sys
sys.exit("Code not Pythonical")

#Exit with a specific status
import os
os._exit()

#Exit in interpreter
quit()

#Exit in Interpreter but more user friendly
exit()
Pythoning Pythoneeir

Как прекратить запуск кода в Python

#to stop all execution of code
exit()
Frightened Flamingo

Выход в Python

import sys
msg = "bye bye"
sys.exit(msg)
# you can use it with out a msg
Doubtful Dingo

выход питона для петли

# python 3

for x in range(1, 10):
    print(x)
    if x == 4:
        break
# prints 1 to 4
Exuberant Eland

Как выйти из программы на Python

import sys sys.exit()	//This will exit the python program
Repulsive Rabbit

Ответы похожие на “Как выйти из программы на Python”

Вопросы похожие на “Как выйти из программы на Python”

Больше похожих ответов на “Как выйти из программы на Python” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования