#單引號的作用
#就輸出字串而言, 單引號雙引號都能達到輸出字串的效果
1. 特殊情況
#但是例如我們想輸出 c:\node\python2
print
'c\node\python2'
##輸出
#c:#ode\python2
##解決方法1
print
'c:\\node\python2'
#輸出: c:\node\python2
##解決方法2
print r'c:\node\python2'
#輸出: c:\node\python2
2. 特殊情況
# 例如我們想輸出 c:\let's go\python2
print
'c:\let's go\python2'
##輸出
#print 'c:\let's go\python2'
^#syntaxerror: invalid syntax
##解決方法
print
"c:\let's go\python2"
#輸出: c:\node\python2
3. 特殊情況
#想輸出: let's go "hello, world" do sth
print
"""let's go "hello, world" do sth"""
'''總結:
單引號可以被雙引號直接轉義
雙引號可以被三引號轉義
如果存在轉義符號可以前加r或者採用'\'轉義
r'c:\node\python2'
'''
str和 repr#想輸出 "hello world"
print
str(
"hel"
)print
repr
("hel"
)##輸出
# hel
#'hel'
小白學python(2)之常見的Python函式
函式 描述abs x 返回x的絕對值 max x1,x2,返回數列中的最大值 min x1,x2,返回數列中的最小值 pow a,b 返回a的b次方的值,類似a b round x 返回與x的值最接近的整數,如果x與兩個整數接近程度相同,則返回偶數值 round x,n 同round x 只不過會保...
Python中單引號和雙引號的作用
在python中我們都知道單引號和雙引號都可以用來表示乙個字串,比如 str1 python str2 python str1和str2是沒有任何區別的。但是如果遇到需要轉義字元的情況,來看單引號和雙引號的版本。單引號版本 str3 we all know that a and b are two ...
Python2 之 print函式示例
吐槽下,python2 官方文件的print資料好少啊,看的別人部落格才知道咋用 usr bin env python coding utf 8 import sys print sys.version 輸入與輸出 str 與repr for x in range 1,11 print repr x...