python
文章平均质量分 50
AuCkyOu
这个作者很懒,什么都没留下…
展开
-
初识python(一)
def demo_string(): stra = 'hello world"' print stra.capitalize() print stra.replace('world', 'nowcoder') strb = ' \n\rhello nowcoder \r\n ' print 0, strb print 1, strb.lstrip() print 2, strb.rstrip(), "xx" strc = 'hello..原创 2021-07-11 22:52:29 · 916 阅读 · 0 评论 -
pymysql
import pymysql import random if __name__ == '__main__': #1、连接数据库 db = pymysql.connect('localhost', 'root', '123456', 'wenda', charset='utf8') try: #2、创建一个游标 cursor = db.cursor() ''' sql = 'insert into questi.原创 2021-07-11 23:00:43 · 140 阅读 · 0 评论