gpt4 book ai didi

python实现超市扫码仪计费

转载 作者:qq735679552 更新时间:2022-09-27 22:32:09 26 4
gpt4 key购买 nike

CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.

这篇CFSDN的博客文章python实现超市扫码仪计费由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.

python实现超市扫码仪计费的程序主要是使用超市扫码仪扫商品的条形码,读取商品信息,实现计费功能。主要用到的技术是串口通信,数据库的操作,需要的环境包括:python环境,mysql,python库(serial,mysqldb)等等.

这个程序的主要过程是:使用扫码仪扫描商品条形码,通过串口通信获取商品条形码,通过该条形码获取商品信息,显示该商品信息并统计总费用。其中商品信息保存在数据库中,可事先导入或者手动导入商品信息,而我的在这里是事先导入的(也可以边扫边倒入信息),导入到数据库中的信息如下:

python实现超市扫码仪计费

程序代码如下:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
#coding:utf8
 
import serial
import mysqldb
 
ser = serial.serial( 'com5' , 9600 )
 
 
#获取一行信息
def recv(serial):
  data = ''
  while serial.inwaiting() > 0 :
   data + = serial.read( 1 )
  
  return data
 
 
def getinfo(db,data):
  data = data[ 0 : - 1 ] #最后面有一个空格,需要去掉,否则会影响读数据库
  print data
  ret = 0.0
  try :
   cur = db.cursor()
   sql = "set names utf8" #这一条语句是告诉数据库编码方式为 utf8
   cur.execute(sql)
 
   sql = "select * from productinfo where code=%s" % (data)
   #print sql
   cur.execute(sql)
   #sql = "select * from productinfo where(code=%s)"
   #cur.execute(sql,data)  
   results = cur.fetchall()
   #print results
   for row in results:
    code = row[ 0 ]
    #print code
    price = row[ 1 ]
    #print price
    info = row[ 2 ]
    #print info
    ret = price
    #解析出来的信息可能为中文,直接print肯定是不行的,需要转化为windows下的gbk编码
    print 'coding=' ,row[ 0 ], 'price=' ,row[ 1 ], 'info=' ,info.decode( 'utf-8' ).encode( 'gbk' )   
  except :
   print 'it has no infomation about %s' % (data)
 
  return ret
 
 
db = mysqldb.connect( 'localhost' , 'root' ,' ',"zou",3306,' utf8')
cursor = db.cursor()
 
#cursor.execute("drop table if exists productinfo")
 
'''''
sql="""create table productinfo(
   code char(18),
   price double(9,2),
   info char(25))"""
cursor.execute(sql)
'''
   
sum = 0.0  
while true:
  data = recv(ser)
  if data ! = '':
   #print data
   sum + = getinfo(db,data)
   print '总付款:' , sum
  
 
db.close()
ser.close()

由于刚刚开始学习python,所以代码规范上做的还不是很好,希望大家多多指出,最后程序的运行如下:

python实现超市扫码仪计费

其中我的程序中可以使用中文(刚刚开始不是显示?就是显示乱码),这个问题我在前面的博客中谈论过,需要处理数据库以及从数据库读取的数据的编码方式。若是大家看出什么错误或是有意见的话,欢饮大家留言.

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我.

原文链接:https://blog.csdn.net/zr1076311296/article/details/51759480 。

最后此篇关于python实现超市扫码仪计费的文章就讲到这里了,如果你想了解更多关于python实现超市扫码仪计费的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com