• python格式化字符串format函数

    1. format可以接受无限个的参数,位置可以不按顺序: In [1]: " {} {} " .format( " hello " , " world " ) # 不设定位置,按默认顺序 Out[1]: ' hello world ' In [ 2]: " {0} {1} " .format( " hello " , " world " ) # 指定位置 Out[2]: ' hello world ' In [ 3]: "...

    2018-06-18 00:42:20

  • Python 之 PyCharm使用

    PyCharm 的官方网站地址是:https://www.jetbrains.com/pycharm/download/ 教育版:https://www.jetbrains.com/pycharm-edu/download/#section=linux PyCharm 的激活方式: 直接打开pycharm,选License server激活,输入:http://idea.imsxm.com...

    2018-06-18 00:42:36

  • python datetime模块

    1 import time 2 import datetime 3 4 """ 5 datetime模块用于是date和time模块的合集,datetime有两个常量,MAXYEAR和MINYEAR,分别是9999和1. 6 datetime模块定义了5个类,分别是 7 1.datetime.date:表示日期的类 8 2.datetime.datetime:表示日期时间的类 9 3.date...

    2018-06-18 00:42:13

  • Longest Substring Without Repeating Characters

    今天开始刷leetcode,进行一个记录,写的比较简陋,见谅 Longest Substring Without Repeating Characters Question: Given a string, find the length of thelongest substringwithout repeating characters. 给定一个字符串,找到其最长无重复的子串 Examples: Given "ab...

    2018-06-18 00:42:13

  • python趣味——与MS系列编译器一样强大的Unicode变量

    中文变量名,中文函数名,中文类名等,可惜Python2不支持,但在Python3时代,这些都可以完美支持了。 def 中文函数(): return 1...

    2018-06-18 00:40:59

  • 列表中包含字典元素时,根据字典的值排序的思路

    ...

    2018-06-18 00:42:10

  • python爬取网页数据并存储到mysql数据库

    #python 3.5from urllib.request import urlopenfrom urllib.request import urlretrievefrom bs4 import BeautifulSoupimport pymysqlconn = pymysql.connect(host='127.0.0.1',user='root',passwd='root',db='pmdb',charset='utf8')cur = conn.cursor() url = "http:...

    2018-06-18 00:42:11

  • Python源码剖析之准备工作

    一个Python程序开发者, 也是C语言爱好者, 为了加强自己对Python语言实现的理解, 最近选择阅读下陈儒老师的书, 对Python3.5.1源码进行阅读, 再次记录下读书笔记. 一、Python的总体结构 P ython总体分为三部分: 文件系统(File Groups), 解释器(Interpreter), 运行时环境(...

    2018-06-18 00:41:16

  • tensorflow添加层-【老鱼学tensorflow】

    ...

    2018-06-18 00:41:54

  • python lambda表达式

    最近在coding时发现使用lambda还是有诸多优点的,很多时候代码更整洁,更pythonic,所以在此简单总结一下 1.lambda是什么 举个简单的例子: func = lambda x: x* x def func(x): return x*x 两个func的定义是完全相同的,那两种函数定义方法配合map使用,将list中所有...

    2018-06-18 00:41:47

2