Python
sime_smile
这个作者很懒,什么都没留下…
展开
-
Python入门之(数字,set,动态类型)
>>> #python数字 >>> >>> I = 10 >>> hex(I) '0xa' >>> oct(I) '0o12' >>> bin(I) '0b1010' >>> #上述是吧整数转化为十六进制、八进制、二进制 >>> >>> #创建复数 >>> complex(1,2) (1+2j) >>> >>> >>> #内置数学工具和扩展>>> #为操作 >>> >>> x = 1 >>原创 2015-09-25 10:58:50 · 549 阅读 · 0 评论 -
Python笔记2
==========================================python笔记2====================================================== Python内置数据结构 (1)元组 元组是“写保护的”,因此元组创建后就不能做任何修改操作, tuple_name = ("apple","banana") 当原创 2016-03-22 18:48:35 · 296 阅读 · 0 评论 -
Python笔记1
=================================================python笔记1======================================= (1)获取Python的关键词: form keyword import kwlist print(kwlist) (2)获取当前的工作路径: import os os.get原创 2016-03-22 18:47:09 · 324 阅读 · 0 评论 -
Python基础入门之(数字、字符串)
>>> #字符串 >>> "meto",'meto' ('meto', 'meto') >>> title = "Meaning" 'of' "lfe" >>> title 'Meaningoflfe' >>> 'knight\'s' "knight's" >>> "knight\"s" 'knight"s' >>> s = 'a\nb\tc' >>> s 'a\nb\tc' >>> print(s原创 2015-09-26 09:48:51 · 421 阅读 · 0 评论 -
python入门之(文件操作和用户定义的类)
#文件操作 >>> file = open("data.txt","w") >>> file.write('hello python file\n') 18 >>> f.close()>>> #读取文件内容>>> file=open('data.txt') >>> text = file.read() >>> text 'hello python file\n' >>> print(text) he原创 2015-09-24 09:55:50 · 1096 阅读 · 0 评论 -
Python入门
python可以定义为面向对象的脚本语言 Python运行模式和Java相似, 源代码-》字节码-》解释 在打开文件的时候open(r'c:\....') 加r和不加''r是有区别的 'r'是防止字符转义的 如果路径中出现'\t'的话 不加r的话\t就会被转义 而加了'r'之后'\t'就能保留原有的样子 在字符串赋值的时候 前面加'r'可以防止字符原创 2015-09-22 22:32:41 · 347 阅读 · 0 评论 -
python入门2
python入门数字模块:math random>>> s = 'spam' >>> len(s) 4 >>> s[0] 's' >>> s[-1] 'm' >>> s[-2] 'a' >>> s[1:] 'pam' >>> s[0:3] 'spa' >>> s+'meto' 'spammeto' >>> s 'spam' >>> s*5 'spamspamspamspamspam' >>> #字符原创 2015-09-24 09:23:53 · 369 阅读 · 0 评论 -
python入门之(语法介绍)
>>> #python语句 >>> >>> ''' 1、程序由模块构成 2、模块包含语句 3、语句包含表达式 4、表达式建立并处理对象 ''' ' 1、程序由模块构成\n2、模块包含语句\n3、语句包含表达式\n4、表达式建立并处理对象\n' >>> >>> while True: reply = input('Enter text:') if reply == 'sto原创 2015-09-27 15:24:48 · 416 阅读 · 0 评论 -
python入门之(if、for等)
Python 3.5.0 (v3.5.0:374f501f4567, Sep 13 2015, 02:16:59) [MSC v.1900 32 bit (Intel)] on win32 Type "copyright", "credits" or "license()" for more information. >>> >>> >>> import os >>> os.chdir('f"/原创 2015-09-28 15:44:30 · 1773 阅读 · 1 评论 -
python入门之(元组、文件)
>>> #tuple file >>> >>> dir(tuple) ['__add__', '__class__', '__contains__', '__delattr__', '__dir__', '__doc__', '__eq__', '__format__', '__ge__', '__getattribute__', '__getitem__', '__getnewarg原创 2015-09-27 10:30:49 · 488 阅读 · 0 评论 -
python基础入门之(list、dict)
Python 3.5.0 (v3.5.0:374f501f4567, Sep 13 2015, 02:16:59) [MSC v.1900 32 bit (Intel)] on win32 Type "copyright", "credits" or "license()" for more information. >>> >>> #list >>> >>> dir(list) ['__add原创 2015-09-26 22:48:36 · 393 阅读 · 0 评论 -
Python笔记3
=========================================================Python笔记3====================================================== 模块与函数 Python程序是由包、模块和函数组成。包是由一系列模块组成的集合。模块是由处理某一类问题的函数和类的集合。 包就是原创 2016-03-22 18:49:38 · 280 阅读 · 0 评论