c1awn

1. Python的文件类型

1. 源代码--直接由Python解析

vi 1.py  
#!/usr/bin/python
print \'hello world\'

这里的1.py就是源代码
执行方式和shell脚本类似:

    1. chmod +x 后,./1.py
    1. Python 1.py

2. 字节代码

  • Python源码文件经编译后生成的扩展名为pyc的文件
  • 编译方法:
[root@t1 py]# cat 2.py 
#!/usr/bin/python
import py_compile 
py_compile.compile(\'1.py\')  

写一个2.py脚本,执行,界面没有输出,但是看下文件列表,多了一个1.pyc

[root@t1 py]# python 2.py 
[root@t1 py]# ll
总用量 12
-rw-r--r-- 1 root root  38 12月 20 21:06 1.py
-rw-r--r-- 1 root root 112 12月 20 21:10 1.pyc
-rw-r--r-- 1 root root  66 12月 20 21:09 2.py

怎么执行?还是python 2.py。
而且,如果源码文件1.py不在了,2.py照样可以执行

3. 优化代码

  • 经过优化的源码文件,扩展名为pyo
  • python –O –m py_compile 1.py
[root@t1 py]# python -O -m py_compile 1.py
[root@t1 py]# ls
1.py  1.pyc  1.pyo  2.py

执行优化代码后,生成1.pyo。执行1.pyo

[root@t1 py]# python 1.pyo
hello world

2.python的变量

  • 变量是计算机内存中的一块区域,变量可以存储规定范围内的值,而且值可以改变。

  • Python下变量是对一个数据的引用

  • 变量的命名

    • 变量名由字母、数字、下划线组成。
    • 变量不能以数字开头
    • 不可以使用关键字
    • a a1 _a
  • 变量的赋值

    • 是变量的声明和定义的过程
    • a = 1
    • id(a) #id显示a在内存的位置号
In [1]: a = 123

In [2]: id(a)
Out[2]: 25933904

In [3]: a = 456 

In [4]: id(a)
Out[4]: 33594056

In [5]: x = \'abc\'

In [6]: x = abc 
---------------------------------------------------------------------------
NameError                                 Traceback (most recent call last)
<ipython-input-6-c455442c5ffd> in <module>()
----> 1 x = abc

NameError: name \'abc\' is not defined

上面报错的解释,默认情况下:

数字直接写表示数字   
数字带引号表示字符串   
字符带引号表示字符串  
字符不带引号表示变量

Python不需要事先声明变量的类型,自动判断

In [7]: a = 456

In [8]: type(a)
Out[8]: int

type查出a的变量类型是整数int

In [9]: a = \'456\'

In [10]: type(a)
Out[10]: str

type查出a的变量类型是字符串str

  • Python运算符包括

1.赋值运算符

=:     x = 3,   y = ‘abcd’      #等于
+=:    x += 2      #x=x+2
-=:    x -= 2      #x=x-2
*=:    x *= 2      #x=x*2
/=:    x /= 2      #x=x/2
%=:    x %= 2      #取余数

2.算术运算符

+
-
*
/
//
%
**

举例1:

In [20]: a = 1 ;b = 2

In [21]: a+b
Out[21]: 3

In [22]: \'a\' + \'b\'
Out[22]: \'ab\'

ab赋值后,a+b是数字。直接加两个字符就是合在一起的字符串
举例2:

In [24]: 4 / 3
Out[24]: 1

In [25]: 4.0 / 3
Out[25]: 1.3333333333333333

4直接除3,因为默认是整数,所以结果取整数1
要想得到小数,将4变成浮点数4.0
特别的,//表示强制取整

In [26]: 4.0 // 3
Out[26]: 1.0

举例3:

In [27]: 2 ** 3
Out[27]: 8

In [28]:  2 * 3
Out[28]: 6

一个*是乘,两个**是幂

3.关系运算符

> :    1 > 2
< :    2 < 3
>=:    1 >= 1
<=:    2 <= 2
==:    2 == 2
!=:    1 != 2

In [33]: 1 > 2
Out[33]: False

In [34]: 1 < 2
Out[34]: True

成立就是true,不成立false

4.逻辑运算符

and逻辑与: True and False
or逻辑或: False or True
not逻辑非: not True

举例:

In [35]: 1 < 2 and 1 >2
Out[35]: False

In [36]: 1 < 2 or  1 >2
Out[36]: True

In [37]: not 1 > 2
Out[37]: True

运算优先顺序:

  • input和raw_input
    input适合数字,raw_input适合字符
In [41]: input("input num:")
input num:123
Out[41]: 123

In [42]: input("input num:")
input num:abc
---------------------------------------------------------------------------
NameError                                 Traceback (most recent call last)
<ipython-input-42-3cd60768312e> in <module>()
----> 1 input("input num:")

<string> in <module>()

NameError: name \'abc\' is not defined

In [43]: input("input num:")
input num:\'abc\'
Out[43]: \'abc\'

In [44]: raw_input("input num:")
input num:abc
Out[44]: \'abc\'

有上面可以看出在input下面,直接输入abc报错,但是raw_input正常显示。
由此可以写一个计算脚本

[root@t1 py]# cat cal.py 

!/sur/bin/python

num1 = input("please input a num

分类:

技术点:

相关文章:

  • 2021-08-02
  • 2021-06-13
  • 2021-07-02
  • 2021-12-23
  • 2021-11-17
  • 2021-10-24
  • 2021-12-07
  • 2019-01-11
猜你喜欢
  • 2021-05-16
  • 2021-11-06
  • 2021-10-25
  • 2021-07-29
  • 2018-03-15
  • 2021-07-12
  • 2021-11-13
相关资源
相似解决方案