python
a987860319
这个作者很懒,什么都没留下…
展开
-
Python在import Iterable时报DeprecationWarning
DeprecationWarning: Using or importing the ABCs from ‘collections’ instead of from ‘collections.abc’ is deprecated since Python 3.3, and in 3.9 it will stop working解决方法执行如下代码时报错from collections i...原创 2019-11-07 14:40:21 · 446 阅读 · 0 评论 -
python判断一个数是否是回数
回数是指从左向右读和从右向左读都是一样的数,例如12321,909。#!/usr/bin/env python# -*- coding: utf-8 -*-# 方法一def is_palindrome(n): s = str(n) l = len(s) i = 0 while i < l - 1 - i: if s[i] != s[l-1-i]:原创 2017-11-09 22:57:15 · 2448 阅读 · 0 评论 -
是时候学习python了
随着机器学习,数据分析的兴起,python在github上成为了第二受欢迎的语言。很久以前就听说python简单、优雅很适合新手入门和学习,更何况python功能如此强大。下面是我找到到两个比较好的学习资源,从现在开始我的python之旅吧。 https://www.zhihu.com/question/20702054 知乎上的建议和学习资源 https://www.liaoxuefeng.c原创 2017-11-03 22:37:02 · 323 阅读 · 0 评论 -
local variable 'i' referenced before assignment
def createCounter(): i=0 def counter(): i += 1 return i return counter运行这段代码的时候会报local variable 'i' referenced before assignment的错误。原因分析:对于counter()函数,i是非全局的外部变量.当在count...原创 2019-06-07 07:55:49 · 14414 阅读 · 3 评论