摘要: import pymysql #打开数据库连接 db =pymysql.connect(host='localhost',user='root',password='15019599752',database='mrsoft',charset='utf8') #使用cursor()方法创建一个游标对 阅读全文
posted @ 2021-12-12 01:40 龙尧 阅读(20) 评论(0) 推荐(0) 编辑
摘要: #!/usr/bin/env python3print("hello world") #数据类型int("45") str(912) #[]使用"Hard Times"[5] #对象引用x = "bule"y = "green"z = x #元组使用逗号创建tuple = ("Denmark", " 阅读全文
posted @ 2021-11-14 11:56 龙尧 阅读(20) 评论(0) 推荐(0) 编辑
摘要: from random import random def printIntro(): print("44号运用这个程序模拟A,B两个选手的比赛:\n") print("这个程序的实现需要知道A,B两个选手的能力值,该值为0-1之间的小数:\n") def getInputs(): probA = 阅读全文
posted @ 2021-11-14 11:53 龙尧 阅读(53) 评论(0) 推荐(0) 编辑
摘要: import jieba jieba.setLogLevel(jieba.logging.INFO) f = open('红楼梦.txt', 'r', encoding='utf-8') txt = f.read() f.close() words = jieba.lcut(txt) counts 阅读全文
posted @ 2021-11-14 11:22 龙尧 阅读(212) 评论(0) 推荐(0) 编辑
摘要: 要求能算到小数点后面越多越好 pi = 0 N = 100 for k in range(N): pi += 1/pow(16, k) * (4 / (8 * k + 1) - 2 /(8 * k + 4) - 1/(8 * k + 5) - 1 /(8 * k + 6)) print("圆周率值是 阅读全文
posted @ 2021-10-17 10:43 龙尧 阅读(53) 评论(0) 推荐(0) 编辑
摘要: money_all = 56.75 + 72.91 + 88.50 + 26.37 + 68.51 money_all_str = str(money_all) print("商品总金额为:" + money_all_str) money_real = int(money_all) money_re 阅读全文
posted @ 2021-09-16 09:20 龙尧 阅读(27) 评论(0) 推荐(0) 编辑
摘要: 要想编程好,平时一定要多加练习 格式要规范,要注释 一定要重视基础,只有把基础弄扎实,才能建高楼 加油!!! 阅读全文
posted @ 2021-09-06 22:33 龙尧 阅读(24) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2021-09-06 22:17 龙尧 阅读(20) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2021-09-06 22:02 龙尧 阅读(79) 评论(0) 推荐(0) 编辑