Python学习第二天

Python学习第二天

1.申请博客
2.安装Python及相关软件
3.预习1.3--1.4

博客已经申请、Python相关的软件已经安装完成。

Python两种执行方法

交互式执行
  1. Python shell
    Python学习第二天_第1张图片
  2. iPython
    Python学习第二天_第2张图片
建立程序文件执行

可执行py文件(Python源码)
未经编译的Python程序,可执行,可编辑,如:
Python学习第二天_第3张图片
pyc文件(字节代码)
Python学习第二天_第4张图片

转换成字节码的方法:
import py_compile
py_compile.compile('./1.py')

pyo文件(优化代码)
Python学习第二天_第5张图片

转换成优化代码的方法:
python -O -m py_compile 1.py

Python中的变量

Python变量同c或者Java,但是Python使用之前不需要定义或者申明。
Python学习第二天_第6张图片

Python实现加减乘除:

#!/usr/bin/python

num1 = input("input first number: ")
num2 = input("input second number: ")

print "%s + %s = %s" % (num1 , num2 , num1 + num2)
print "%s - %s = %s" % (num1 , num2 , num1 - num2)
print "%s * %s = %s" % (num1 , num2 , num1 * num2)
print "%s / %s = %s" % (num1 , num2 , num1 / num2)

Python学习第二天_第7张图片

你可能感兴趣的:(Python学习)