我是靠谱客的博主 坦率铅笔,最近开发中收集的这篇文章主要介绍怎么退出python,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

在进入python 后,发现常规的"Ctrl+C"退出不了

C:Userseuweb>python
Python 3.10.2 (tags/v3.10.2:a58ebcc, Jan 17 2022, 14:12:15) [MSC v.1929 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>>
KeyboardInterrupt
>>>
KeyboardInterrupt
>>> ^D
File "<stdin>", line 1
^
SyntaxError: invalid syntax
>>> ^Z
C:Windowssystem32>A
[root@localhost ~]# python3
Python 3.6.8 (default, Jan 19 2022, 23:28:49)
[GCC 8.5.0 20210514 (Red Hat 8.5.0-7)] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>>
KeyboardInterrupt
>>>

 通过搜索下面文章知晓了推出方式,虽然有些东西没有提示

  • windows中python可以使用exit()或者ctrl+z 退出

  • linux中python可以使用exit()或者使用ctrl+D 退出

使用exit()没试验,有个简单的就好

最后

以上就是坦率铅笔为你收集整理的怎么退出python的全部内容,希望文章能够帮你解决怎么退出python所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(59)

评论列表共有 0 条评论

立即
投稿
返回
顶部