码迷,mamicode.com
首页 > 其他好文 > 详细

py素数

时间:2015-07-16 19:00:34      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:

"""

# -*- coding: cp936 -*-

#500内的所有素数

t=[]

def num():

    for i in range(1,501):

        if i%2!=0:

            print‘是素数‘,i

print num()

 

#!/usr/bin/python

 #-*- coding:utf-8 -*-

 #there is no ++ operator in Python

import string

def main():

    s=raw_input(‘请输入:‘)

    letter=0

    space=0

    digit=0

    other=0

    for i in s:

        if i.isalpha():

            letter+=1

        elif i.isspace():

            space+=1

        elif i.isdigit():

            digit+=1

        else:

            other+=1

    print‘你输入的字母%d:,空格%d:,数字%d:,其他%d:‘%(letter,space,digit,other)

if __name__==‘__main__‘:

    main()

"""

 

 

py素数

标签:

原文地址:http://www.cnblogs.com/mhxy13867806343/p/4156430.html

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