摘要:
内容:判断质数 持续更新 # __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) 阅读全文
摘要:
内容:通过修改hosts文件,让pycharm不能够联网验证激活码的方式。我在kali和win10都成功了 1、修改hosts文件 Windows文件位置:C:\Windows\System32\drivers\etc Linux和mac的hosts文件路径为:/etc 在文件末尾添加:0.0.0. 阅读全文