Python警号键怎么按?解救你的开发快捷键!


警号键(英文名:Exclamation Mark)在Python的开发中扮演着很重要的角色。但是,对于初学者来说,警号键怎么按可能不是那么容易掌握的。本文将从多个方面介绍Python警号键的用法和快捷键,帮助你轻松学会编程中的警号键。

一、Python警号键的使用方法

首先,让我们来介绍Python警号键的使用方法。在Python中,警号键有两种用法:

1、表示逻辑非(not)

not True   # False
not False  # True

2、字符串格式化

name = "Tom"
age = 18
print("My name is %s, I am %d years old." % (name, age))  # My name is Tom, I am 18 years old.

在这里,%s表示字符串,%d表示整数,%f表示浮点数,%x表示十六进制数,%o表示八进制数。

二、Python警号键的快捷键

在编程过程中,快捷键可是提高效率的关键。下面是Python编程中常用的警号键快捷键:

1、在IDLE中输入警号键,可以直接输入not符号。

2、在Pycharm中输入警号键,可以使用Ctrl + !或者Alt + 4 + 1来输入。

3、在Jupyter Notebook中输入警号键,可以先输入!然后按Tab键来补全。

4、在VS Code中输入警号键,可以使用Ctrl + Shift + P打开命令面板,然后输入“insert snippet”,选择“python.json”,在"snippets"部分添加:

"Not": {
    "prefix": "not",
    "body": "not "
}

这样,每次输入not+空格,就会自动补全为not符号。

三、Python警号键的注意事项

在Python中,警号键有一些注意事项,需要注意:

1、警号键后不能直接跟字符串。

not "123"  # 报错
not (3 == 2)  # True

2、在Python中,警号键不要连续使用。

not not true  # 报错

3、在Python中,警号键的运算优先级较低,一般要加括号。

not a and b  # (not a) and b
not (a or b)  # not (a or b)

四、Python警号键的使用示例

最后,让我们看一下Python警号键的使用示例。

a = 3
b = 5
if not a == b:
    print("a 不等于 b")
    
a = 1
b = 2
c = 3
print("not a == b: ", not a == b)  # True
print("not (a == b and b == c): ", not (a == b and b == c))  # True

name = "Tom"
age = 18
print("My name is %s, I am %d years old." % (name, age))  # My name is Tom, I am 18 years old.

总结

Python警号键在Python编程中是非常常用的符号,在理解其用法和快捷键的前提下,可以大大提高编程的效率。所以,希望本文能够帮助读者掌握Python警号键,让编程更加轻松!

评论关闭