python 代码片段6
生活随笔
收集整理的這篇文章主要介紹了
python 代码片段6
小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
#coding=utf-8# python常用的列表list和字符串string
# tuple元組,一個(gè)身有殘疾的只讀列表s='python'
print s[0]
print s[-1]# 序列切片print s[1:4]
print s[3:]
print s[:3]
print s[:]# 字符串連接 連接+ 復(fù)制* 檢查是否是成員 in 和 not inprint 'python and '+'django are cool'
print 'python and '+''+'django are cool'
print '-'*40
print 'ang' in 'django'
print 'ang' not in 'django'
轉(zhuǎn)載于:https://www.cnblogs.com/yufenghou/p/5095922.html
總結(jié)
以上是生活随笔為你收集整理的python 代码片段6的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。
- 上一篇: oracle 插入timestamp
- 下一篇: flash怎么制作一个文字翻转的动态效果