計算機導論學習第一課筆記

第一部分、字符串學習(使用PYTHON)html 一、字符串+數字的狀況python   print 'apple'+'!'*3顯示內容:apple!!! 二、索引字符串 app #顯示內容:t print 'test'[0] #顯示內容:末尾的‘t’ print 'test'[-1] 三、選擇字符串的子序列 #顯示內容:est print 'test'[1:] #不顯示任何內容 print
相關文章
相關標籤/搜索