摘要:
参考 https://blog.csdn.net/csdnall/article/details/80888038 阅读全文
posted @ 2020-12-27 22:14
wysl
阅读(42)
评论(0)
推荐(0)
摘要:
参考 https://blog.csdn.net/csdnall/article/details/80888038, 阅读全文
posted @ 2020-12-27 17:22
wysl
阅读(54)
评论(0)
推荐(0)
摘要:
基于tkinter完成一个简易计算器 1 至少包含+-*/运算 2 能正确计算机结果 阅读全文
posted @ 2020-12-27 17:19
wysl
阅读(39)
评论(0)
推荐(0)
摘要:
mport random #四则运算 def t(): sym = ['+', '-', '×', '÷'] f= random.randint(0, 3) n1 = random.randint(1, 20) n2 = random.randint(1, 20) result = 0 if f== 阅读全文
posted @ 2020-12-27 17:14
wysl
阅读(113)
评论(0)
推荐(0)