
python学习
liner515
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Python学习笔记
Python学习中ing… 《A byte of Python 3》学习摘要 Chapter 5 format 方法 有时我们并不想用其他信息来构造字符串。这儿format() 方法就很有用。1 #!/usr/bin/python 2 # Filename: str_format.py 3 age = 25 4 name = 'Swaroop' 5 print('{0} is {1} yea原创 2017-03-11 11:12:36 · 177 阅读 · 0 评论 -
Python学习笔记
Python学习中… 《A byte of Python 3》学习摘要 Chapter 7 控制流 7.1 if语句number = 20 guess = int(input('Enter an integer =')) if guess == number: print('Congratulations!') print('(没钱)') elif guess > numbe原创 2017-03-11 13:45:58 · 239 阅读 · 0 评论 -
jupyter修改jupyter_notebook_config.py文件后仍未改变
本文链接:https://blog.youkuaiyun.com/Mr_yuntuo/article/details/90751685 1.win+r输入cmd进行命令窗口,输入 jupyter notebook –generate-config 这个时候会返回一个文件路径。 PS: 这一步时,如果你之前未更改过默认目录,那么系统会直接生成一个“j...转载 2019-10-09 21:07:24 · 3849 阅读 · 0 评论