📄 teststrings.py
字号:
"normal string"
# unicode/raw
u"unicode string"
a = R'c:/dir1\file'
b = r'c:/dir1\file'
ur'test'
uR'test'
UR'test'
##r
"normal string"
# unicode/raw
u"unicode string"
a = r'c:/dir1\file'
b = r'c:/dir1\file'
ur'test'
ur'test'
ur'test'
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -