📅  最后修改于: 2023-12-03 15:34:32.239000             🧑  作者: Mango
Python是一种高级、通用、直译性编程语言。Python具有优秀的互动性、跨平台、易于学习和读写等优点,因此非常适合用于教育、科研以及日常的开发工作。Python拥有强大而全面的标准库,很多常用的功能都已经封装好了,可以直接调用,方便快捷。
Python广泛应用于不同领域,包括:
Python是基于对象的语言,没有显式的变量声明。变量在使用时,会自动进行类型推导。Python支持的数据类型包括整型、浮点型、字符串、布尔型、列表、元组、字典等。
# 表示整数的数据类型
num1 = 10
# 表示浮点数的数据类型
num2 = 3.14
# 表示字符串的数据类型
str1 = 'hello, python'
# 表示布尔类型的数据
flag = True
# 表示列表的数据类型
list1 = [1, 2, 3, 4, 5]
# 表示元组的数据类型
tuple1 = (1, 2, 3, 4, 5)
# 表示字典的数据类型
dict1 = { 'name': 'liming', 'age': 20, 'gender': 'male' }
Python支持if、for、while等多种控制语句。
# if语句示例
score = 85
if score >= 60 and score < 90:
print('B grade')
elif score >= 90:
print('A grade')
else:
print('C grade')
# for语句示例
fruits = ['apple', 'banana', 'orange']
for fruit in fruits:
print(fruit)
# while语句示例
num = 0
while num < 10:
num += 1
print(num)
Python支持函数和模块的定义和导入使用。
# 函数定义示例
def add(a, b):
return a + b
# 模块示例
import math
print(math.sqrt(4))