码迷,mamicode.com
首页 > 编程语言 > 详细

Python小代码_10_判断是否为素数

时间:2018-02-24 23:07:10      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:range   imp   input   代码   port   pos   gpo   bre   color   

import math

n = int(input(Input an integer:))
m = int(math.sqrt(n) + 1)
for i in range(2, m):
    if n % i == 0:
        print(No)
        break
else:
    print(Yes)

#输出结果
#Input an integer:23
#Yes

Python小代码_10_判断是否为素数

标签:range   imp   input   代码   port   pos   gpo   bre   color   

原文地址:https://www.cnblogs.com/chuangming/p/8467690.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!