• 列表推导式与生成表达式的区别

    列表推导式和生成表达式有相似,但是却有本质不不同 简单的把它们之间的关系理一理吧: # 列表推导式: res=[i for i in range(6 )] print (res)结果:[0, 1, 2, 3, 4, 5] # 生成表达式: res=(i for i in range(6 )) print (res) 结果:generator object genexpr at 0...

    2019-04-11 10:32:06

  • 字体变色详解链接:https://www.cnblogs.com/daofazir

    格式: \033[显示方式;前景色;背景色m + 结尾部分: \033[0m 字体色 | 背景色 | 颜色描述-------------------------------------------30 | 40 | 黑色31 | 41 | 红色32 | 42 | 绿色33 | 43 | 黃色34 | 44 | 蓝色35 | 45 | 紫红色36 | 46 | 青蓝色37 | 47 | 白色-------...

    2019-04-11 10:32:29

  • 打印九九乘法表

    1 line =9 2 while line 0: 3 # print ("*") 4 tmp = line 5 while tmp 0: 6 print ( " # " ,end= "" ) 7 tmp-=1 8 line -=1 9 print () 10 11 first = 0 12 while first =9 : 13 sec =1 14 while sec = first: 15 print (str(sec) + " * " + str(first) + " = " +str(...

    2019-04-11 10:32:32

  • 网络编程—tcp

    一、TCP简介 TCP介绍 TCP协议,传输控制协议(英语:Transmission Control Protocol,缩写为 TCP) 是一种面向连接的、可靠的、基于字节流的传输层通信协议,由IETF的RFC 793定义。 TCP通信需要经过 创建连接、数据传送、终止连接 三个步骤。 TCP通信模型中,在通信开...

    2019-04-11 10:31:44

  • python第三次作业——叶耀宗

    作业1 import random #引入随机数模块 xing=["小白","小黄","小王","小陈","小绿"] print("学号\t\t\t姓名\t\tJava\tC语言\tPython\t平均成绩\t") listj=[] listc=[] listp=[] lista=[] for i in range(5): #循环5次 n = 20170000 + random.randint(0, 9999) j = rando...

    2019-04-11 10:32:14

  • [codewars_python]Sum of Digits / Digital Root

    Instructions In this kata, you must create a digital root function. A digital root is the recursive sum of all the digits in a number. Given n , take the sum of the digits of n . If that value has more than one digit, continue reducing in this way u...

    2019-04-11 10:31:58

  • Python简介

    Python 简介 Python 是一个高层次的结合了解释性、编译性、互动性和面向对象的脚本语言。 Python 的设计具有很强的可读性,相比其他语言经常使用英文关键字,其他语言的一些标点符号,它具有比其他语言更有特色语法结构。 Python 是一种解释型语言: 这意味着开发过程...

    2019-04-11 10:31:35

  • 运用jieba库分词

    运用jieba库分词 一、jieba库基本介绍 1、 jieba库概述 jieba是优秀的中文分词第三方库 - 中文文本需要通过分词获得单个的词语 - jieba是优秀的中文分词第三方库,需要额外安装 - jieba库提供三种分词模式,最简单只需掌握一个函数 2、jieba分词的原理 Jieba分词依靠中...

    2019-04-11 10:31:05

  • 流程控制(if、while、for)

    流程控制 一、if判断 # 1、语法一 if 条件: #条件成立时执行的子代码块` 代码1 代码2 代码3 # 示例: sex= 'female' age= 18 is_beautiful= True if sex == 'female' and age 16 and age 20 and is_beautiful: print( '开始表白。。。') print( 'other code1...') prin...

    2019-04-11 10:31:28

  • Python爬虫(2):urllib库

    爬虫常用库urllib 注:运行环境为PyCharm urllib是Python3内置的HTTP请求库 urllib.request:请求模块 urllib.error:异常处理模块 urllib.parse:url解析模块 urllib.robotparse:robot.txt解析模块 1、urllib.request.urlopen(url, data=None, [timeout]*, cafile=No...

    2019-04-11 10:30:34

2