码迷,mamicode.com
首页 > 编程语言 > 详细

python基础知识

时间:2019-04-01 00:51:24      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:下划线   import   net   列表   info   python基础   image   基本知识   pre   

python初体验

 print and input

技术图片

print()是打印,input()是函数,该函数用来获取用户的输入

python基础讲解

python变量特性+命名规则

1,变量名的长度不受限制,但其中的字符必须是字母,数字,或者下划线(_),而不能使用空格,连字符,标点符号,引号或其他字符

2,变量名的第一个字符不能是数字,而必须是字母或者下划线

3,python区分大小写

4,不能将python关键字用作变量名

注释方法

1,#这是一个注释

2,单引号

3,双引号(多行注释可以用三个单引号或者三个双引号)

python中“:”作用

1,在函数定义语句、循环、条件、类定义等后面使用

2,在切片中使用

dir( )及和help( )

dir()函数返回包含要查询对象的所有属性名称的列表

dir()

[‘In‘,
 ‘Out‘,
 ‘_‘,
 ‘__‘,
 ‘___‘,
 ‘__builtin__‘,
 ‘__builtins__‘,
 ‘__doc__‘,
 ‘__loader__‘,
 ‘__name__‘,
 ‘__package__‘,
 ‘__spec__‘,
 ‘_dh‘,
 ‘_i‘,
 ‘_i1‘,
 ‘_ih‘,
 ‘_ii‘,
 ‘_iii‘,
 ‘_oh‘,
 ‘exit‘,
 ‘get_ipython‘,
 ‘quit‘]

  help()帮助文档

help()


Welcome to Python 3.7‘s help utility!

If this is your first time using Python, you should definitely check out
the tutorial on the Internet at https://docs.python.org/3.7/tutorial/.

Enter the name of any module, keyword, or topic to get help on writing
Python programs and using Python modules.  To quit this help utility and
return to the interpreter, just type "quit".

To get a list of available modules, keywords, symbols, or topics, type
"modules", "keywords", "symbols", or "topics".  Each module also comes
with a one-line summary of what it does; to list the modules whose name
or summary contain a given string such as "spam", type "modules spam".






help> 

 import使用 

import函数语句用于引入模块、从模块中导入一个指定部分、把一个模块的全部内容导入 

 python数值基本知识

python中数值类型,int,float,bool,e记法等

int表示整型;
float表示浮点型;
bool是布尔类型,有ture跟false两个值;

算数运算符

包含了+ - * / % ** //

技术图片

 

技术图片

逻辑运算

技术图片

 成员运算符

技术图片

身份运算符

技术图片

 

运算符优先级

技术图片

 

python基础知识

标签:下划线   import   net   列表   info   python基础   image   基本知识   pre   

原文地址:https://www.cnblogs.com/MsHibiscus/p/10634152.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!