91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

python學習之工資結算

發布時間:2020-05-28 23:39:10 來源:網絡 閱讀:394 作者:皮皮球 欄目:編程語言

import os,re,sys

operation_lists = '''
1.查詢工資
2.修改工資
3.增加新員工記錄
4.刪除員工信息
5.退出
'''
user_dict = {}
user_name = []

def user_information():
with open('info.txt','r',encoding='UTF-8') as f :
f = f.readlines()
for i in f:
i = i.strip()
i = i.split()
global user_name
user_name.append(i[0])
user_dict[i[0]] = i[1]
print(user_name)

def operation():
while True:
print(operation_lists)
user_operation = input('請輸入你的操作編號:')
if user_operation.isdigit():
user_operation = int(user_operation)
if user_operation > 5:
print('你在搞什么,不要亂搞')
if user_operation == 1:
user_enquires()
if user_operation == 2:
salary_change()
if user_operation == 3:
add_users()
if user_operation == 4:
del_users()
if user_operation == 5:
sys.exit('退出程序')
else:
print('不要搞事情')

def user_enquires():
user_information()
name_key = input('輸入你想查詢人員的名字:')
global user_dict
print('%s的工資為%s'%(name_key,user_dict.get(name_key)))

def salary_change():
user_information()
name_key = input('輸入你想改變人員工資的名字:')
print('%s的工資為%s' % (name_key, user_dict.get(name_key)))
salary_change = input('請輸入該員工新的金額:')
if salary_change.isdigit():
salary_change = int(salary_change)

    with open('info.txt','r',encoding='UTF-8') as fa :
       lines = fa.readlines()
    with open('info.txt','w',encoding='UTF-8') as f_w:
        for line in lines:
            if name_key in line:
                name_salay = str(user_dict.get(name_key))
                print(name_salay)
                salary_change = str(salary_change)
                line = line.replace(name_salay,salary_change)
            f_w.write(line)
        user_dict[name_key] = salary_change
        print(user_dict)
else:
    print('能不能不搞事????')

def add_users():
user_information()
user_name = input('請輸入你要添加人員的姓名:')
user_salary = input('請你給他開工資:')
if user_salary.isdigit():
user_salary = int(user_salary)
else:
print('能不能不搞事!!')
user_dict[user_name] = user_salary

def del_users():
user_information()
user_name = input('請輸入你要刪除員工的姓名:')
user_dict.pop(user_name)

operation()
#user_information()
#user_enquires()
#salary_change()
#add_users()

#user_information()

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

宕昌县| 彰化市| 绥德县| 普宁市| 河池市| 金坛市| 泰州市| 香河县| 三亚市| 临邑县| 顺义区| 永嘉县| 丰顺县| 西安市| 丹东市| 莱芜市| 平乐县| 长白| 扎兰屯市| 临湘市| 甘肃省| 台湾省| 高邮市| 海兴县| 阜新市| 沿河| 东兴市| 石城县| 松阳县| 乐安县| 灵宝市| 宿迁市| 昌都县| 来凤县| 北川| 宜昌市| 和龙市| 桃园县| 临武县| 科技| 望奎县|