“Python Exit Program” Ответ

Как остановить программу в Python

import sys

sys.exit()
Expensive Eagle

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

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

Ответы похожие на “Python Exit Program”

Вопросы похожие на “Python Exit Program”

Больше похожих ответов на “Python Exit Program” по Python

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

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