摘要:
import pymysql #打开数据库连接 db =pymysql.connect(host='localhost',user='root',password='15019599752',database='mrsoft',charset='utf8') #使用cursor()方法创建一个游标对 阅读全文
摘要:
#!/usr/bin/env python3print("hello world") #数据类型int("45") str(912) #[]使用"Hard Times"[5] #对象引用x = "bule"y = "green"z = x #元组使用逗号创建tuple = ("Denmark", " 阅读全文
摘要:
from random import random def printIntro(): print("44号运用这个程序模拟A,B两个选手的比赛:\n") print("这个程序的实现需要知道A,B两个选手的能力值,该值为0-1之间的小数:\n") def getInputs(): probA = 阅读全文
摘要:
import jieba jieba.setLogLevel(jieba.logging.INFO) f = open('红楼梦.txt', 'r', encoding='utf-8') txt = f.read() f.close() words = jieba.lcut(txt) counts 阅读全文
摘要:
要求能算到小数点后面越多越好 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("圆周率值是 阅读全文
摘要:
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 阅读全文