1. 程式人生 > >5.21 - 一入Python深似海,從此節操是路人

5.21 - 一入Python深似海,從此節操是路人

passwd isdigit 操作 用戶名 continue str 字符串 () open

5.21,Python第二節,伊始,我感覺我來到了蜀道的山腳下,擡頭仰望,盡是巍峨,心底又不要臉的有一點兒小期待[*臉紅*]

這節課,我回憶起來都是些零零碎碎,講了字符串、列表、字典、切片、文件等等等等等等等等等等等等等等等等,等到了地老天荒,俯瞰不消化的大肚皮,依稀泛起一股有容乃大的蒼涼。。

不過我覺得每節的作業都是精華,解題的過程就像探險一樣有趣,嘻嘻嘻,所以我想分享出來,留待以後忘光的時候還有地方可以重溫下當年的輝煌:

1、寫一個可以添加商品、查詢商品的程序:
#1、首先需要登錄,登錄的用戶名和密碼是存在一個文件裏面的,格式是niuhanyang,123456
#賬號密碼是輸入正確就登錄,
#登錄之後,提示有3個選擇,1、添加商品2、查詢商品3、退出程序,exit()
#添加商品,需要輸入、商品名稱、商品id、商品價格,都不能為空,價格和id只能是數字,商品名稱不能重復
#添加商品成功後,要把商品寫入到product.txt這個文件裏面

  #查詢商品,輸入商品名稱,不能輸入空,如果商品存在,打印商品的信息
#商品名:xx,商品價格:xxx,商品id:xxxx
#如果商品不存在,提示不存在,如果直接輸入exit,那就直接退出程序

name_dict = {}
with open(‘file.txt‘,‘r‘) as fn:
for line in fn:
name,passwd = line.strip(‘\n‘).split(‘,‘) # 把line以逗號分隔,去掉換行符,並且分別定義為name、passwd
name_dict[name] = passwd # 轉換為有唯一索引的字典,這句的意思是name是key,passwd是value

id = 0
p_dict = {}
while True:
name = input(‘請輸入用戶名:‘).strip()
if name in name_dict:
passwd = input(‘請輸入密碼:‘).strip()
if passwd == name_dict[name]:
print(‘歡迎%s來到小商品程序,請選擇操作程序:‘ % name)
print(‘1-添加商品‘.center(50, ‘*‘))
print(‘2-查詢商品‘.center(50, ‘*‘))
print(‘3-退出程序‘.center(50, ‘*‘))
while True:
action = input(‘請輸入操作程序序號:‘).strip()
if action == ‘1‘:
pname = input(‘請輸入商品名稱:‘).strip()
id = id + 1
price = input(‘請輸入商品價格:‘).strip()
if pname == ‘‘ or price == ‘‘:
print(‘商品名稱或價格不能為空!‘)
else:
if pname in p_dict:
print(‘該商品已存在,不能重復添加!‘)
else:
if price.isdigit() != True:
print(‘商品價格必須為數字!‘)
else:
p_dict.setdefault(pname, {})[‘id‘] = id
p_dict.setdefault(pname, {})[‘price‘] = price
print(p_dict)
with open(‘product.txt‘, ‘w‘) as fp:
product = str(p_dict)
fp.write(product + ‘\n‘)
print(‘添加商品%s成功!‘ % pname)
elif action == ‘2‘:
with open(‘product.txt‘, ‘r‘) as fp:
p_list = fp.read()
print(p_list)
pname = input(‘請輸入商品名稱進行查詢:‘).strip()
if pname == ‘‘:
print(‘商品名稱不能為空!‘)
else:
if pname not in p_list:
print(‘該商品不存在!‘)
else:
p_dict = eval(p_list) # 這句的意思是把字符串轉換為字典,註意:必須是符合字典格式的字符串才能轉換,亂套的7788你是想幹啥
print(‘商品名稱:【%s】,商品價格:【%s】,商品ID:【%s】‘ % (pname, p_dict.get(pname).get(‘price‘), p_dict.get(pname).get(‘id‘)))
elif action == ‘3‘ or action == ‘exit‘:
print(‘您已退出程序,謝謝使用。‘)
exit()
break
else:
print(‘請輸入正確的操作序號!‘)
else:
print(‘用戶名或密碼錯誤!‘)
else:
print(‘該用戶不存在!‘)
continue

另外還有修改文件的迷之邏輯:

# #下面這些是修改文件內容的
# import os
# f = open(‘a.txt‘,‘a+‘,encoding=‘utf-8‘)
# # f代表的是這個文件的對象,也叫句柄
# f.seek(0)#移動文件指針
# fw = open(‘a.txt.new‘,‘w‘,encoding=‘utf-8‘)
# for line in f:
# new_res = line.replace(‘1‘,‘2‘)
# fw.write(new_res)
# f.close()
# fw.close()
# os.remove(‘a.txt‘)
# os.rename(‘a.txt.new‘,‘a.txt‘)

我想知道opena.txt.new的時候,真的不會報錯麽。。

剛問了老師,老師說了,不會報錯,因為a+文件不存在時,是不會報錯的,同時,new出來的這個文件的命名也是可以很隨意的

5.21 - 一入Python深似海,從此節操是路人