python learning
leeningzzu
这个作者很懒,什么都没留下…
展开
-
python:字符串转浮点数 str2float('123.4567)
最近在学习廖雪峰老师的python教程 借鉴各路大神的思路进行整理记录,以供参考from functools import reduce #导入reduce 函数def str2float(s): n=s.index('.') s1,s2=list(map(int,s[:n])),list(map(int,s[n+1:])) return reduce(lambda x,y:x*...原创 2018-05-22 14:14:02 · 3846 阅读 · 0 评论 -
PYTHON中三种取整函数(// int round)的区别
>>> 5//31>>> -5//3-2>>> int(5.3)5>>> int(5.6)5>>> round(5.3)5>>> round(5.6)6//运算取整时保留整数的下界,int则是剪去小数部分,只保留前面的整数,即向零取整,round函数遵循四舍五入的...原创 2018-06-10 16:19:52 · 24822 阅读 · 0 评论 -
coursera多伦多python learning week 4
字符长度def get_length(dna): """ (str) -> int Return the length of the DNA sequence dna. >>> get_length('ATCGAT') 6 >>> get_length('ATCG') 4 """ r原创 2018-07-01 12:22:17 · 269 阅读 · 0 评论 -
优达学城计算机科学导论:python 两日期间的天数
def daysBetweenDates(year1, month1, day1, year2, month2, day2): def daysinyear(year,month,day):#the day of this year count=0 if year%400==0 or (year%100!=0 and year%4==0): ...原创 2018-07-26 14:29:28 · 267 阅读 · 0 评论 -
conda update 后 anaconda=custom的解决方式
conda update 后 anaconda=custom的解决方式conda及anaconda正确升级方式conda update condaconda update anaconda倘若直接采用conda update --all可能出现部分包升级 部分降级,anaconda=custom的情况解决方式另建环境conda create -n py37 -c anaconda ...原创 2019-04-21 02:03:46 · 2547 阅读 · 3 评论 -
conda 更新常用命令 及 pycharm tensorflow 配置
Tensorflow 安装采用anaconda 搭建环境并创建tensorflow 环境anaconda3 5.3python 3.7开启 Anaconda Prompt 搭建tensorflow虚拟 环境命令conda creat -n tensorflow python=3.7激活转至tensorflowactivate tensorflow在该环境中安装te...原创 2019-04-27 14:24:29 · 1730 阅读 · 0 评论