问题分析
dracarys~
这个作者很懒,什么都没留下…
展开
-
Ubuntu环境Python3下“”import matplotlib“”失败,提示"No module named _tkinter"的问题
环境Ubuntu18.04python 3.6.5问题截图在import matplotlib时,出现问题:No module named _tkinter ![在这里插入图片描述](https://img-blog.csdn.net/20180919162030847?watermark/2/text/aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L3dsd2xvbW8=...原创 2018-09-19 16:31:12 · 1221 阅读 · 0 评论 -
彻底解决“Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX2 FMA”警告
问题描述在使用TensorFlow时,总是提醒“Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX2 FMA”解决办法网上有很多说在python代码中添加:os.environ[“TF_CPP_MIN_LOG_LEVEL”]=‘2’ # 只显示 warning 和 ...原创 2018-09-21 19:26:21 · 18025 阅读 · 8 评论 -
python3中 UnicodeDecodeError: 'utf-8' codec can't decode byte 0xff in position 0: invalid start byte
前一天程序运行的好好的,第二天重新运行程序就出现了这样的问题:网上的解决方案都说是在打开文件时将‘r’改为‘rb’:如:将csvfile = open(file_name,encoding='utf-8') 改为csvfile = open(file_name,'rb')但是这样会造成其他的问题:python 3.5: TypeError: a bytes-like object is r...原创 2019-02-28 12:12:39 · 6978 阅读 · 2 评论 -
LeetCode:Longest Common Prefix
Write a function to find the longest common prefix string amongst an array of strings.If there is no common prefix, return an empty string “”.Example 1:Input: [“flower”,“flow”,“flight”]Output: “fl...原创 2019-04-09 01:47:11 · 163 阅读 · 0 评论