學習的流程按照
我用的py版本是3.4所以有些地方不一樣,例如:
在py2中列印字串「python」:
print 'python'
而py3中:
print ('python')
從字串使用開始:
『 』:單引號標註字串
「 」:雙引號標註字串
「」「 」「」:三雙引號保持字串格式(例如換行)
『』『 』『』:三單引號同上
\:在字串中使用可以起到連線作用(連線兩個不在一行的字串)
#:注釋
例如(**):
#單引號
print('hello python world!\n')
#雙引號
print("hello python world!\n")
#三單引號
print('''hello
python
world!\n''')
#三雙引號
print("""hello
python
world!\n""")
#\連線字串
print('hello \
python \
world\n')
#使用字串變數
s = "hello \
python \
world!\n"
print(s)
效果: python學習筆記1 字串的使用
字串運算 和 的例子 輸出乙個方框包裹的字元 sentence input sentence screen width 80 text width len sentence box width text width left margin screen width box width 2 print...
python學習1 字串變數
字串是任意長度的字元集合。當向python中處理乙個字串時,必須有一對引號把字串括起來。而這個引號可以是單引號,也可以是雙引號,還可以是三層引號。這三種引號在python中是等價的。1.之所以有三種引號的存在,是為了輸出字串中包含的引號 單引號或者雙引號 而三層引號多用於換行輸出。這樣有了三種引號的...
python學習筆記1 字串
小點總結 sentence input input the sentence words sentence.split 同樣適用於任何其它分隔符 9.letters list word 可以直接將word變成乙個list,其中每個元素都是乙個字母 判斷一句話中是否有正讀反讀都一樣的單詞 senten...