摘要: 内容:判断质数 持续更新 # __author: _nbloser # date: 2018/2/4 import math def is_prime(number): num_sqrt = int(math.sqrt(number)) for i in range(2, num_sqrt + 1) 阅读全文
posted @ 2018-03-14 23:26 Alos403 阅读(247) 评论(0) 推荐(0) 编辑
摘要: 内容:通过修改hosts文件,让pycharm不能够联网验证激活码的方式。我在kali和win10都成功了 1、修改hosts文件 Windows文件位置:C:\Windows\System32\drivers\etc Linux和mac的hosts文件路径为:/etc 在文件末尾添加:0.0.0. 阅读全文
posted @ 2018-03-14 22:46 Alos403 阅读(12083) 评论(0) 推荐(0) 编辑