镇场诗:---大梦谁觉,水月中建博客.百千磨难,才知世事无常.---今持佛语,技术无量愿学.愿尽所学,铸一良心博客.------------------------------------------ 1 code aList1=[1,2,3,4,5,6,7,213,54,124,774,2312,531,76] aList2=aList1 print(aList1) print(aList2) 2 show ------------------------------------------博…
镇场诗:---大梦谁觉,水月中建博客.百千磨难,才知世事无常.---今持佛语,技术无量愿学.愿尽所学,铸一良心博客.------------------------------------------ 1 code aList1=[1,2,3,4,5,6,7,213,54,124,774,2312,531,76] aList2=aList1[:] print(aList1) print(aList2) 2 show ----------------------------------------…
str = 'Runoob'# 输出字符串print(str) # 输出第一个到倒数第二个的所有字符print(str[0:-1]) # 输出字符串第一个字符print(str[0]) # 输出从第三个开始到第五个的字符print(str[2:5]) # 输出从第三个开始的后的所有字符print(str[2:]) # 输出字符串两次print(str * 2) # 连接字符串print(str + "TEST") print(str+r'\n\r'+"aaaa")…
镇场诗:---大梦谁觉,水月中建博客.百千磨难,才知世事无常.---今持佛语,技术无量愿学.愿尽所学,铸一良心博客.------------------------------------------ 1 code aList=[1,2,3,4,[5,6]] result=5 not in aList print(result) 注:列表中的列表,in 不支持查询的 2 show ------------------------------------------博文的精髓,在技术部分,更在镇场…
# Python 列表(List) list1 = ['physics', 'chemistry', 1997, 2000] list2 = [1, 2, 3, 4, 5] list3 = ["a", "b", "c", "d"] ''' Python包含6中内建的序列,即列表.元组.字符串.Unicode字符串.buffer对象和 xrange 对象. 序列通用的操作包括:索引.长度.组合(序列相加).重复(乘法).分片.检…
镇场诗:---大梦谁觉,水月中建博客.百千磨难,才知世事无常.---今持佛语,技术无量愿学.愿尽所学,铸一良心博客.------------------------------------------ 1 code aList=[1,2,3,4,5,6,7,213,54,124,774,2312,531,76] aList.sort() print(aList) 2 show ------------------------------------------博文的精髓,在技术部分,更在镇场一诗…
镇场诗:---大梦谁觉,水月中建博客.百千磨难,才知世事无常.---今持佛语,技术无量愿学.愿尽所学,铸一良心博客.------------------------------------------ 1 code aList=[1,2,3,4,5,6,7] aList.reverse() print(aList) 2 show ------------------------------------------博文的精髓,在技术部分,更在镇场一诗.Python是优秀的语言,值得努力学习.我是跟…
         Python : 3.7.0          OS : Ubuntu 18.04.1 LTS         IDE : PyCharm 2018.2.4       Conda : 4.5.11    typesetting : Markdown   code """ @Author : 行初心 @Date : 18-9-23 @Blog : www.cnblogs.com/xingchuxin @Gitee : gitee.com/zhichengji…
         Python : 3.7.0          OS : Ubuntu 18.04.1 LTS         IDE : PyCharm 2018.2.4       Conda : 4.5.11    typesetting : Markdown   code """ @Author : 行初心 @Date : 18-9-23 @Blog : www.cnblogs.com/xingchuxin @Gitee : gitee.com/zhichengji…
python002 Python3 基础语法 编码默认情况下,Python 3 源码文件以 UTF-8 编码,所有字符串都是 unicode 字符串. 当然你也可以为源码文件指定不同的编码: # -*- coding: cp-1252 -*- 标识符 第一个字符必须是字母表中字母或下划线'_'. 标识符的其他的部分有字母.数字和下划线组成. 标识符对大小写敏感.在Python 3中,非-ASCII 标识符也是允许的了. python保留字保留字即关键字,我们不能把它们用作任何标识符名称.Pyth…