欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

python基础学习(六)

程序员文章站 2022-12-21 16:32:07
12.函数 # 函数 function # def 声明函数 # 关键字 keywords # print("Hello ke") name = "songKE" # 注意 缩进块 定义 函数 自上而下 def sayHello(name, age): print("Hello" + name + ......

12.函数

#  函数   function
# def  声明函数
# 关键字  keywords

# print("hello  ke")

name = "songke"


# 注意  缩进块  定义 函数    自上而下
def sayhello(name, age):
    print("hello" + name + ",age:" + str(age))


# print("say hi")
# print(1)
# 调用函数
# sayhello(name)
# print(2)

# list
friends = ["张三", "李四", "王五"]
ages = [12, 13, 41]
sayhello(friends[0], ages[0])
sayhello(friends[1], ages[1])
sayhello(friends[2], ages[2])

run结果:

python基础学习(六)

 

 13.字典

# dic dict
# key value  键 值
# nickname  张三
# age   12
# is_vip    false

# 更新字典  增加新的key value

# 定义 字典变量
customer = {
    "nickname": "张三",
    "age": 12,
    "is_vip": false,
  
}

# print(customer["nickname"])

# 查询不到  默认返回0000000
print(customer.get("id", "0000000"))

run结果:

python基础学习(六)