Python基本语法

1.程序和用户交互

Python中,使用input函数实现

python 复制代码
input("这里写提示信息, 必须使用引号引起来")

2.变量

用户的输入可以使用一个变量来接收

python 复制代码
s = input("请输入一个数字")

例:
In [1]: n = input("请输入一个数字:")
请输入一个数字:9

In [2]: n
Out[2]: '9'
变量命名规则:

①不要以单下划线和双下划线开头

②变量名不得使用标准库(内置)的模块或者第三方的模块名

③不要使用Python内置的关键字命名

In 3: import keyword

In 4: keyword.kwlist

Out4:

['False',

'None',

'True',

'and',

'as',

'assert',

'async',

'await',

'break',

'class',

'continue',

'def',

'del',

'elif',

'else',

'except',

'finally',

'for',

'from',

'global',

'if',

'import',

'in',

'is',

'lambda',

'nonlocal',

'not',

'or',

'pass',

'raise',

'return',

'try',

'while',

'with',

'yield']

Python中变量的赋值过程

s = 'hello'

变量名s分配给hello这个对象;----Python中一切皆对象

hello这个对象会在内存中显先被创建,之后再把变量名s分配给这个对象。

对象时在右边先被创建或者获取,在此之后左边的变量名才会被绑定到对象上,就相当于为对象贴上了一个标签。

一个对象可以有多个标签或者名字。

例如:

python 复制代码
In [5]: a = 1

In [6]: b = a

In [7]: a = 2

In [8]: print(b)
1
多元赋值

多元赋值:同时给多个变量进行赋值

python 复制代码
In [9]: n1, n2 = 1, 4

In [10]: n1
Out[10]: 1

In [11]: n2
Out[11]: 4

In [12]: s1, s2 = '12'

In [13]: s1
Out[13]: '1'

In [14]: s2
Out[14]: '2'

In [15]: num, s = [10, 'hello']

In [16]: num
Out[16]: 10

In [17]: s
Out[17]: 'hello'

3.Python中的判断条件

python 复制代码
In [18]: n = 10 #进行赋值

In [19]: n == 10 #等于
Out[19]: True    #条件为真,则返回True

In [20]: n != 10 #不等于
Out[20]: False    #条件为假,则返回False

In [21]: n > 10    #大于
Out[21]: False

In [22]: n < 10    #小于
Out[22]: False

In [23]: n >= 10    #大于等于
Out[23]: True

In [24]: n <= 10    #小于等于
Out[24]: True

例如·

python 复制代码
In [30]: n = input("请输入一个数字:")
请输入一个数字:78

In [31]: n == 78
Out[31]: False


In [32]: type (n)
Out[32]: str

这里返回False,是因为数据类型 。

在编程中,数据是有类型之分的,input()接收到的任何数据都会成为字符串类型(str)

4.数据类型

查看数据的类型------使用type
python 复制代码
In [36]: type(10)
Out[36]: int

In [37]: type (n)
Out[37]: str
整型(int)
python 复制代码
In [39]: type(0)
Out[39]: int

In [40]: type(-1)
Out[40]: int
浮点数(float)

带小数点的小数

python 复制代码
In [41]: type(1.241)
Out[41]: float

In [42]: type(-24432531.2423)
Out[42]: float
布尔型(bool)
python 复制代码
In [44]: type(True)
Out[44]: bool

In [45]: type(False)
Out[45]: bool
字符串(str)

引号引起来的都是字符串

python 复制代码
In [46]: type('3124')
Out[46]: str

In [47]: type('hello')
Out[47]: str
二进制(bytes)

用b开头的字符串

python 复制代码
In [48]: type(b'hello')
Out[48]: bytes
类型转换
转换为int
python 复制代码
In [1]: int('10')
Out[1]: 10

In [2]: int(12.25)
Out[2]: 12
转换为float
python 复制代码
In [3]: float(1)
Out[3]: 1.0

In [4]: float(0)
Out[4]: 0.0
转换为str

所有都能转换为字符串

python 复制代码
In [1]: str(214)
Out[1]: '214'


In [2]: str(b'hello',encoding='utf-8')
Out[2]: 'hello'

二进制转换为字符串的时候,需要指定字符编码

转换为二进制

python 复制代码
In [3]: bytes('羊羊', encoding=('utf-8'))
Out[3]: b'\xe7\xbe\x8a\xe7\xbe\x8a'

字符串转二进制的时候,需要指定字符编码

5.if语句

语法:

python 复制代码
if 条件1:
    # 当条件1成立时执行这里的代码块
elif 条件2:
    # 当条件2成立时执行这里的代码块
elif 条件3:
    # 当条件3成立时执行这里的代码块
else:
    # 当以上条件都不成立时执行这里的代码块
python 复制代码
In [10]: if 19 == 18:
    ...:     print("相等")
    ...:     print("猜对了")
    ...: elif 17 > 18:
    ...:     print("大了")
    ...: elif 19 <  18:
    ...:     print("小了")
    ...: else:
    ...:     print("以上条件都不满足")
    ...:
以上条件都不满足

6.循环

语法:

while 条件表达式**:**

条件表达式为,就执行这里的代码

7.Python程序执行

bash 复制代码
vim hello.py
#!/usr/bin/env python3
# file name hello.py

print("猜数游戏开始")

n = input("请输入一个数字")
n = int(n)

if n == 18:
    print("猜对了")
elif  n > 18:
    print("大了")
else:
    print("小了")


执行
[root@localhost python_code]# python3 hello.py
猜数游戏开始
请输入一个数字5
小了


[root@localhost python_code]# chmod +x hello.py
[root@localhost python_code]# ./hello.py
猜数游戏开始
请输入一个数字6
小了
相关推荐
不会C语言的男孩3 分钟前
C++ Primer Plus 第12章:类和动态内存分配
开发语言·c++
To_OC7 分钟前
Python 字典和集合,原来底层是这么玩的
python
星卯教育tony15 分钟前
CIE中国电子学会2026年3月c++ Python scratch 机器人真题试卷含参考答案
c++·python·scratch·电子学会
阿里嘎多学长25 分钟前
2026-05-30 GitHub 热点项目精选
开发语言·程序员·github·代码托管
linksinke25 分钟前
在 CentOS 7.x 外网环境离线构建便携式 Python 3.11.4 的方案参考
linux·python·centos
wapicn9927 分钟前
API接口调试笔记:从注册到第一个数据返回,全流程详解
java·开发语言·python·lua
logo_2828 分钟前
python指定目录进行虚拟环境配置
python·虚拟环境
大数据魔法师31 分钟前
Streamlit(十七)- API 参考文档(十)- 身份认证与用户信息组件
python·web
.千余32 分钟前
【Linux】 TCP进阶详解:字节流、粘包问题、异常情况与UDP完整对比2
linux·运维·c语言·开发语言·经验分享·笔记·php
geovindu33 分钟前
python: Bounded Parallelism Pattern
开发语言·python·设计模式·有界并行模式