python打卡
老子裤子马
这个作者很懒,什么都没留下…
展开
-
Paython打卡Day21-Day22——json学习、类的学习
Paython打卡Day21-Day22——json学习、类的学习import json# python字典类型转换为json对象data1 = { 'num': 1, 'name': "Kuzma", 'url': "http://kuzma.com"}# 转jsonjson_str = json.dumps(data1)# python 原始数据print("python 原始数据")print("json对象:", json_str)# 将json对原创 2020-10-06 00:05:28 · 158 阅读 · 0 评论 -
Paython打卡Day20——flask模块学习
Paython打卡Day20——flask模块学习import flaskimport pymysqlimport json# __name__表示把当前这个python文件做出一个服务器server = flask.Flask(__name__)# 获取数据库连接def get_connect(): return pymysql.connect(host='101.200.82.237',port = 3306,db = 'content_center',user = 'r原创 2020-10-06 00:04:45 · 142 阅读 · 0 评论 -
Paython打卡Day19——数据库连接
Paython打卡Day19——数据库连接import pymysql# 获取数据库连接def get_connect(): return pymysql.connect(host='101.200.82.237',port = 3306,db = 'content_center',user = 'root',password = 'abc.123')# 关闭数据库连接def close(cursor, connect): cursor.close() conne原创 2020-10-06 00:03:33 · 151 阅读 · 0 评论 -
Paython打卡Day18——time使用
Paython打卡Day18——time使用import time# 获取当前时间戳print(time.time())# 获取当前时间元组print(time.localtime())for i in range(0, 10): #休眠 time.sleep(1) #时间格式化 print(time.strftime('%Y-%m-%d %H:%M:%S', time.localtime(time.time())))...原创 2020-10-06 00:01:29 · 116 阅读 · 0 评论 -
Python打卡Day016-Day17——小复习
Python打卡Day016-Day17——小复习九九乘法表——for循环练习"""九九乘法表"""for i in range(1, 10): for j in range(1, i + 1): print('{} * {} = {}'.format(i, j, i * j), end=' ') print()小球——函数封装练习def countHigh(n): h = 100 x = 0 for i in range(0,原创 2020-10-06 00:00:53 · 131 阅读 · 0 评论 -
Python打卡Day014-Day15——切片学习
Python打卡Day014-Day15——切片学习# 方法一def trim(s): length = len(s) if length > 0: for i in range(length): if s[i] != ' ': break j = length-1 while s[j] == ' ' and j >= i: j -= 1原创 2020-10-06 00:00:16 · 132 阅读 · 0 评论 -
Python打卡Day011-Day13——函数练习、import学习、异常使用
Python打卡Day011-Day13——函数练习、import学习、异常使用import mathdef getX(a, b, c): if b*b-4*a*c < 0: print("该方程无解") if b*b-4*a*c == 0: print("该方程有两个相等的解为%d" % (-b/2*a)) if b*b-4*a*c > 0: s = b*b-4*a*c x = float((-b原创 2020-10-05 23:59:13 · 139 阅读 · 0 评论 -
Python打卡Day09-Day10——字典操作、for循环操作
Python打卡Day09-Day10——字典操作、for循环操作dist = {"name": "小王", "hobby": "music"}print(dist)# 添加dist['age'] = 21# 删除print(dist)del dist['hobby']print(dist)# 清空dist.clear()dist1 = {"name": "小张", "school": "NJUIT"}print(dist1)# 修改dist1['name'] = "小王"p原创 2020-10-05 23:58:30 · 259 阅读 · 0 评论 -
Python打卡Day07-Day08——列表、元组tuple学习
Python打卡Day07-Day08——列表、元组tuple学习list = [1, 2, 3, 4, 5]# 在末尾追加list.append('hello')print(list)list2 = [4, 5]# 在末尾追加列表list.extend(list2)print(list)# 在指定位置插入指定元素list.insert(2, '我')print(list)# 删除指定位置元素del list[0]print(list)# 修改列表元素list[1] =原创 2020-10-05 23:57:33 · 179 阅读 · 0 评论 -
Python打卡 Day05-Day06—print的用法、字符串相关操作
Python打卡 Day05-Day07—print的用法、字符串相关操作for i in range(5): i = i + 1 if i == 5: print(i) else: print(i, end=',')str = "I love SpringCloud"# 首字母大写其余小写print(str.capitalize())# 每个单词首字母大写print(str.title())# 每个字母大写print(str.up原创 2020-09-19 23:51:20 · 296 阅读 · 0 评论 -
Python打卡 Day04——while、break、input的用法
Python打卡 Day04——while、break、input的用法from math import sqrtnum = int(input("请输入一个正整数:"))end = int(sqrt(num))is_prime = Truefor x in range(2, end+1): while num % x == 0: is_prime = False breakwhile num != 1 and is_prime: print("%原创 2020-09-16 22:38:49 · 217 阅读 · 0 评论 -
Python打卡Day03——if语法和三引号
Python打卡Day03——if语法和三引号if语法import randoma = random.randint(1, 10)b = random.randint(1, 10)print("a=%d,b=%d" % (a, b))if a >= b: print('a大于b')else: print('a小于b')三引号python中三引号可以将复杂的字符串进行复制:python三引号允许一个字符串跨多行,字符串中可以包含换行符、制表符以及其他特殊字符。原创 2020-09-15 21:54:33 · 248 阅读 · 0 评论 -
Python打卡Day02——Python变量名规范
Python打卡Day02——Python变量名规范一.标识符1.第一个字符必须是字母表中字母或下划线 _2.标识符的其他的部分由字母、数字和下划线组成3.标识符区分大小写二.保留字(关键字)['global', 'if', 'import', 'in', 'is', 'lambda', 'nonlocal', 'not', 'or', 'pass', 'raise', 'return', 'try', 'while', 'with', 'yield']['False', 'None', 'T原创 2020-09-14 22:57:24 · 337 阅读 · 0 评论 -
Python打卡Day01——Python中的标准数据类型
Python打卡Day01——Python中的标准数据类型与Java中的数据类型对应关系PythonJavaNumberfloat、double、int、long、false、trueStringstring、chartList(列表)List、ArrayTuple(元组)ListSet(集合)SetDictionary(字典)Map特点...原创 2020-09-13 22:13:33 · 248 阅读 · 1 评论