python pta 计算薪资底薪为5000
时间: 2024-02-12 08:05:42 浏览: 153
好的,如果你需要编写一个 Python 程序来计算薪资,并且底薪为 5000 元,可以按照以下步骤操作:
1. 定义底薪变量,赋值为 5000:
```python
base_salary = 5000
```
2. 获取用户输入的加班时间和工作天数:
```python
work_days = int(input("请输入本月工作天数:"))
overtime_hours = int(input("请输入本月加班时间(小时):"))
```
3. 计算加班费和总工资:
```python
overtime_pay = overtime_hours * 50 # 每小时加班费为 50 元
total_salary = base_salary + work_days * 200 + overtime_pay
```
4. 输出结果:
```python
print("本月总工资为:", total_salary, "元")
```
完整代码如下:
```python
base_salary = 5000
work_days = int(input("请输入本月工作天数:"))
overtime_hours = int(input("请输入本月加班时间(小时):"))
overtime_pay = overtime_hours * 50
total_salary = base_salary + work_days * 200 + overtime_pay
print("本月总工资为:", total_salary, "元")
```
注意,这只是一个简单的示例程序,实际应用中可能需要考虑更多情况,例如税收、社保等。
阅读全文