1 Star 0 Fork 1

Brandon_xiong/Siemens-PLC-s7__Py

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
interface.py 1.99 KB
一键复制 编辑 原始数据 按行查看 历史
Peyman Majidi 提交于 2019-07-29 10:21 . keyboard intrupt
def Logo():
print(chr(27)+'[2j')
print('\033c')
print('\x1bc')
with open('./Modules/logo.txt', 'r') as file:
data = file.read()
print(data)
def Init():
print("""
┌───────┬──────────────────┬─────────────────────────┬──────────────┬───────────────────────┐
│ # │ CITY │ BARCODE │ GATE │ TIME STAMP │
├───────┼──────────────────┼─────────────────────────┼──────────────┼───────────────────────┤
└─....──┴──────────────────┴─────────────────────────┴──────────────┴───────────────────────┘\r""",end = '')
def Print_Row(i,gate, city, barcode, sortTime):
gate_str = str(gate) if gate >9 else "0" + str(gate)
row = f"│ # │ CITY │ BARCODE │ GATE │ TIME STAMP │"
row = row[:2] + str(i) + ((5-len(str(i)))* ' ') + row[7:]
row = row[:10] + city + ((17 - len(city))* ' ') + row[27:]
row = row[:30] + barcode + ((22 - len(barcode))* ' ') + row[52:]
row = row[:59] + gate_str + ((8 - len(gate_str))* ' ') + row[67:]
row = row[:71] + sortTime + ((21 - len(sortTime))* ' ') + row[92:]
print(row)
print("└───────┴──────────────────┴─────────────────────────┴──────────────┴───────────────────────┘\r",end = '')
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/brandon-xiong/Siemens-PLC-s7__Py.git
git@gitee.com:brandon-xiong/Siemens-PLC-s7__Py.git
brandon-xiong
Siemens-PLC-s7__Py
Siemens-PLC-s7__Py
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385