第一题
这是一个电商网站的库存管理问题,我们需要管理商品的库存信息。每个商品都有商品编号、名称和库存数量。
商品编号 商品名称 数量1 手机 102 电视 53 耳机 20
现在有一个用户购买了商品编号为1的商品5件,需要对库存中的商品数量进行调整,如果库存充足,对外售出,我们会输出减少库存的商品信息,否则,我们会输出库存不足的商品信息。
提示:通过面向对象处理这个问题
- 属性
- product_id(商品编号):一个整数,用于唯一标识每个商品。
- name(商品名称):一个字符串,表示商品的名称。
- stock(库存数量):一个整数,表示商品的库存数量。
- 方法:
- init(self, product_id, name, stock):初始化方法,用于创建商品对象。需要传入商品的编号、名称和库存数量。
- reduce_stock(self, quantity):减少库存的方法。需要传入一个整数quantity表示要减少的库存数量。如果库存充足,并成功减少库存,返回True;否则返回False。
- 数据存储
products = [Product(1, "手机", 10),Product(2, "电视", 5),Product(3, "耳机", 20)]
class Product:def __init__(self, product_id, name, stock):self.product_id = product_idself.name = nameself.stock = stockdef reduce_stock(self, quantity):if self.stock >= quantity:self.stock -= quantityreturn Trueelse:return False# 商品列表
products = [Product(1, "手机", 10),Product(2, "电视", 5),Product(3, "耳机", 20)
]# 购买商品的用户
purchase_product_id = 1
purchase_quantity = 5# 查找商品并尝试减少库存
for product in products:if product.product_id == purchase_product_id:if product.reduce_stock(purchase_quantity):print("成功减少库存:")print("编号:", product.product_id)print("名称:", product.name)print("库存:", product.stock)else:print("库存不足:")print("编号:", product.product_id)print("名称:", product.name)print("库存:", product.stock)break
第二题
某班级有5名学生,他们的学号、姓名和英语成绩如下表所示,此数据存储在student_scores.txt文件中,请编写一个程序,完成如下功能:
1,计算每个学生的平均成绩。
2,输出平均成绩最高的学生信息。
3,要求使用面向对象完成此需求,即,创建学生对象用于存储学号、姓名、得分,提供计算平均分方法等。
+------+--------+------+------+------+
| 学号 | 姓名 | 语文 | 数学 | 英语 |
+------+--------+------+------+------+
| 001 | 张三 | 85 | 90 | 78 |
| 002 | 李四 | 92 | 88 | 95 |
| 003 | 王五 | 88 | 92 | 85 |
| 004 | 赵六 | 78 | 85 | 90 |
| 005 | 小明 | 95 | 92 | 88 |
+------+--------+------+------+------+
student_scores.txt文本内容如下
学号,姓名,语文,数学,英语
001,张三,85,90,78
002,李四,92,88,95
003,王五,88,92,85
004,赵六,78,85,90
005,小明,95,92,88
class Student:def __init__(self, student_id, name, scores):self.student_id = student_idself.name = nameself.scores = scoresdef get_average_score(self):if len(self.scores) == 0:return 0else:return sum(self.scores) / len(self.scores)# 从文件中读取学生信息和成绩
students = []
with open('student_scores.txt', 'r') as file:lines = file.readlines()[1:] # 使用切片操作跳过第一行for line in lines:# 此处*scores存储的是后续所有的得分student_id, name, *scores = line.strip().split(',')scores = [int(score) for score in scores]student = Student(student_id, name, scores)students.append(student)# 计算每个学生在不同科目上的平均成绩
for student in students:average_score = student.get_average_score()student.average_score = average_score# 查找平均成绩最高的学生
highest_average_score = max(student.average_score for student in students)
print(highest_average_score)student_list = []
for student in students:if student.average_score == highest_average_score:student_list.append(student)for highest_score_student in student_list:# 输出平均成绩最高的学生信息print("学号:", highest_score_student.student_id)print("姓名:", highest_score_student.name)print("平均成绩:", highest_score_student.average_score)print("")
第三题(难题)
class BankAccount:def __init__(self, account_number, account_type, balance):self.account_number = account_numberself.account_type = account_typeself.balance = balanceself.transactions = []def deposit(self, amount):if amount > 0:self.balance += amountself.transactions.append(f"存入 {amount} 元。")print(f"成功存入 {amount} 元。当前余额为:{self.balance} 元。")else:print("存款金额必须大于0。")def withdraw(self, amount):if amount > 0:if amount <= self.balance:self.balance -= amountself.transactions.append(f"取出 {amount} 元。")print(f"成功取出 {amount} 元。当前余额为:{self.balance} 元。")else:print("余额不足,取款失败。")else:print("取款金额必须大于0。")def transfer(self, recipient_account, amount):if amount > 0:if amount <= self.balance:self.balance -= amountrecipient_account.deposit(amount)self.transactions.append(f"转账给账户 {recipient_account.account_number} {amount} 元。")print(f"成功转账给账户 {recipient_account.account_number} {amount} 元。")else:print("余额不足,转账失败。")else:print("转账金额必须大于0。")def get_transaction_history(self):print(f"账户 {self.account_number} 的交易历史记录:")for transaction in self.transactions:print(transaction)def __str__(self):return f"账号:{self.account_number} 类型:{self.account_type} 余额:{self.balance}"# 创建账户对象
account1 = BankAccount("123456789", "储蓄账户", 10000)
account2 = BankAccount("987654321", "支票账户", 5000)# 打印账户信息
print(account1)
print(account2)# 进行存款、取款、转账和查看交易历史记录操作
account1.deposit(500)
account1.withdraw(2000)
account2.transfer(account1, 3000)
account1.get_transaction_history()