一、用pycharm创建python项目

__file__ python 内建变量 python中创建变量怎么创建_Python


__file__ python 内建变量 python中创建变量怎么创建_python_02


__file__ python 内建变量 python中创建变量怎么创建_赋值_03


点击右上角Add

__file__ python 内建变量 python中创建变量怎么创建_Python_04

配置完后,点击ok

__file__ python 内建变量 python中创建变量怎么创建_python_05

右键点击run

__file__ python 内建变量 python中创建变量怎么创建_python_06


二、python基础语法

1、基础数据类型

Python 中的变量不需要声明。每个变量在使用前都必须赋值,变量赋值以后该变量才会被创建。

在 Python 中,变量就是变量,它没有类型,我们所说的"类型"是变量所指的内存中对象的类型。

等号(=)用来给变量赋值。

等号(=)运算符左边是一个变量名,等号(=)运算符右边是存储在变量中的值。例如:

counter = 100 # 整型变量

miles = 1000.0 # 浮点型变量

name = “runoob” # 字符串

print(counter)

print(miles)

print(name)

多个变量赋值

Python允许你同时为多个变量赋值。例如:

a = b = c = 1

print(a)

print(b)

print©

为多个对象指定多个变量。例如:

a, b, c = 1, 2, “runoob”

print(a)

print(b)

print©

标准数据类型

__file__ python 内建变量 python中创建变量怎么创建_赋值_07


2、Number(数字)

Python3 支持 int、float、bool、complex(复数)。

在Python 3里,只有一种整数类型 int,表示为长整型,没有 python2 中的 Long。

内置的 type() 函数可以用来查询变量所指的对象类型。

__file__ python 内建变量 python中创建变量怎么创建_python_08


isinstance 来判断数据类型:

__file__ python 内建变量 python中创建变量怎么创建_python_09


isinstance 和 type 的区别在于:

__file__ python 内建变量 python中创建变量怎么创建_python_10


数值运算

__file__ python 内建变量 python中创建变量怎么创建_赋值_11


__file__ python 内建变量 python中创建变量怎么创建_python_12


__file__ python 内建变量 python中创建变量怎么创建_赋值_13


__file__ python 内建变量 python中创建变量怎么创建_Python_14


__file__ python 内建变量 python中创建变量怎么创建_Python_15


3、条件控制语句

__file__ python 内建变量 python中创建变量怎么创建_赋值_16


__file__ python 内建变量 python中创建变量怎么创建_Python_17


4、List(列表)

__file__ python 内建变量 python中创建变量怎么创建_Python_18


__file__ python 内建变量 python中创建变量怎么创建_赋值_19


__file__ python 内建变量 python中创建变量怎么创建_赋值_20


__file__ python 内建变量 python中创建变量怎么创建_Python_21


__file__ python 内建变量 python中创建变量怎么创建_赋值_22


Python 列表截取可以接收第三个参数,参数作用是截取的步长,以下实例在索引 1 到索引 4 的位置并设置为步长为

2(间隔一个位置)来截取字符串:

__file__ python 内建变量 python中创建变量怎么创建_赋值_23


__file__ python 内建变量 python中创建变量怎么创建_python_24


__file__ python 内建变量 python中创建变量怎么创建_Python_25


__file__ python 内建变量 python中创建变量怎么创建_Python_26