strings.py

来自「this is the most basic to learn python」· Python 代码 · 共 19 行

PY
19
字号
#: c01:strings.py
print "That isn't a horse"
print 'You are not a "Viking"'
print """You're just pounding two
coconut halves together."""
print '''"Oh no!" He exclaimed.
"It's the blemange!"'''
print r'c:\python\lib\utils'
#<hr>
output = '''
That isn't a horse
You are not a "Viking"
You're just pounding two
coconut halves together.
"Oh no!" He exclaimed.
"It's the blemange!"
c:\python\lib\utils
'''

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?