📜  如果退出 python sql - TypeScript (1)

📅  最后修改于: 2023-12-03 14:53:24.100000             🧑  作者: Mango

退出 Python, SQL, and TypeScript

有时候我们需要退出某些编程环境,例如 Python、SQL、TypeScript 等。这里介绍如何退出这些环境。

退出 Python

要退出 Python,可以使用 exit() 或者 quit() 命令。

>>> exit()

或者

>>> quit()

两个命令的效果是一样的。

退出 SQL

要退出 SQL,可以使用 quit 命令。

$ mysql -u username -p
Enter password:
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 689731
Server version: 5.5.60-0+deb8u1 (Debian)

Copyright (c) 2000, 2018, Oracle and/or its affiliates. 
All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective 
owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql> quit
Bye
退出 TypeScript

要退出 TypeScript 的控制台,可以使用 Ctrl + D 或者 exit 命令。

$ tsc
Version 3.5.3
Syntax:   tsc [options] [file ...]

Examples: tsc hello.ts
          tsc --outFile file.js file.ts
          tsc @args.txt
          tsc --build tsconfig.json

Options:
...
Use "exit" or "Ctrl + D" to exit.

如果使用 Ctrl + D 退出 TypeScript,则会看到如下输出:

$ tsc
Version 3.5.3
Syntax:   tsc [options] [file ...]

Examples: tsc hello.ts
          tsc --outFile file.js file.ts
          tsc @args.txt
          tsc --build tsconfig.json

Options:
...

如果使用 exit 命令退出 TypeScript,则会看到如下输出:

$ tsc
Version 3.5.3
Syntax:   tsc [options] [file ...]

Examples: tsc hello.ts
          tsc --outFile file.js file.ts
          tsc @args.txt
          tsc --build tsconfig.json

Options:
...
Use "exit" or "Ctrl + D" to exit.
exit