Python實例:11~20例

例11:打印出全部的」水仙花數」,所謂」水仙花數」是指一個三位數,其各位數字立方和等於該數自己。例如:153是一個」水仙花數」,由於153=1的三次方+5的三次方+3的三次方。css

#!/usr/bin/python3
# -*- coding: UTF-8 -*-
for n in range(100,1000):
    i = int(n / 100)
    j = int(n / 10) % 10
    k = n % 10
    if n == i ** 3 + j ** 3 + k ** 3:
        print(n,end=" ")

輸出結果:python

153 370 371 407

例12:將一個正整數分解質因數。例如:輸入90,打印出90=2*3*3*5git

#!/usr/bin/python3
# -*- coding: UTF-8 -*-

def reduceNum(n):
    print ("{0} = ".format(n),end='')
    if not isinstance(n, int) or n <= 0 :
        print ('請輸入一個正確的數字 !')
        exit(0)
    elif n in [1] :
        print ('{}'.format(n))
    while n not in [1] : # 循環保證遞歸
        for index in range(2, n + 1) :
            if n % index == 0:
                n = int(n/index) # n 等於 n/index
                if n == 1: 
                    print(index)
                else : # index 必定是素數
                    print ('{} *'.format(index),end=" ")
                break

reduceNum(1100)

輸出結果:編程

1100 = 2 * 2 * 5 * 5 * 11

例13:利用條件運算符的嵌套來完成此題:學習成績>=90分的同窗用A表示,60-89分之間的用B表示,60分如下的用C表示。bash

#!/usr/bin/python3
# -*- coding: UTF-8 -*-
score = int(input('請輸入分數'))
if score >= 90:
    grade = 'A'
elif score >= 60:
    grade = 'B'
else :
    grade = 'C'
print('%d屬於%s'%(score,grade))

輸出結果:markdown

請輸入分數99
99屬於A

例14:輸出指定格式的日期。app

#!/usr/bin/python3
# -*- coding: UTF-8 -*-
import datetime
# 輸出今日日期
print(datetime.date.today().strftime('%Y-%m-%d'))
#建立日期對象
mkdateobj = datetime.date(2018,7,7)
print(mkdateobj.strftime('%m/%d %Y'))
# 日期算術運算
miyazakiBirthNextDay = mkdateobj + datetime.timedelta(days=1)
print(miyazakiBirthNextDay.strftime('%d/%m/%Y'))

輸出結果:學習

請輸入分數99
99屬於A

例15:輸入一行字符,分別統計出其中英文字母、空格、數字和其它字符的個數。ui

#!/usr/bin/python3
# -*- coding: UTF-8 -*-
import string
s = input('請輸入一個字符串:')
i = 0
letter = 0
space = 0
digit = 0
other = 0
while i < len(s):
    c = s[i]
    i+=1
    if c.isalpha():
        letter+=1
    elif c.isspace():
        space+=1
    elif c.isdigit():
        digit+=1
    else:
        other+=1
print("有%d個字母,有%d個空格,有%d個數字,有%d個其餘字符"%(letter,space,digit,other))

輸出結果:spa

請輸入一個字符串:我在杭州|iam in hangzhou 3 years !
有22個字母,有5個空格,有1個數字,有2個其餘字符

例16:求s=a+aa+aaa+aaaa+aa…a的值,其中a是一個數字。例如2+22+222+2222+22222(此時共有5個數相加),幾個數相加由鍵盤控制。

reduce和lambda使用說明

#!/usr/bin/python3
# -*- coding: UTF-8 -*-
from functools import reduce
s = 0
arr = []
n = int(input('n:'))
a = int(input('a:'))
for i in range(n):
    s = s + a
    a = a*10
    arr.append(s)
    print(s)
arr = reduce(lambda x,y:x+y,arr)
print('和是:%d'%arr)

輸出結果:

n:6
a:3
3
33
333
3333
33333
333333
和是:370368

例17:一個數若是剛好等於它的因子之和,這個數就稱爲」完數」。例如6=1+2+3.編程找出1000之內的全部完數。

#!/usr/bin/python3
# -*- coding: UTF-8 -*-
from sys import stdout
for j in range(2,1001):
    k = []
    n = -1
    s = j
    for i in range(1,j):
            if j % i == 0:
                n += 1
                s -= i
                k.append(i)

    if s == 0:
        print(j)
        for i in range(n):
            stdout.write(str(k[i]))
            stdout.write(' ')
        print(k[n])

輸出結果:

6
1 2 3
28
1 2 4 7 14
496
1 2 4 8 16 31 62 124 248

例18:一球從100米高度自由落下,每次落地後反跳回原高度的一半;再落下,求它在第10次落地時,共通過多少米?第10次反彈多高?

#!/usr/bin/python3
# -*- coding: UTF-8 -*-
total = []
height = []
hei = 100.0
tim = 10
for i in range(1,tim+1):
    if i == 1:
        total.append(i)
    else:
        total.append(2*hei)
    hei = hei / 2
    height.append(hei)
print('總高度:total={0}'.format(sum(total)))
print('第10次反彈高度: height={0}'.format(height[-1]))

輸出結果:

總高度:total=200.60937510次反彈高度: height=0.09765625

例19:猴子吃桃問題:猴子第一天摘下若干個桃子,立即吃了一半,還不癮,又多吃了一個次日早上又將剩下的桃子吃掉一半,又多吃了一個。之後天天早上都吃了前一天剩下的一半零一個。到第10天早上想再吃時,見只剩下一個桃子了。求第一天共摘了多少

#!/usr/bin/python3
# -*- coding: UTF-8 -*-
t = 1
for i in range(9,0,-1):
    x = (t+1)*2
    t =x
print(t)

輸出結果:

1534

例20:
把字符串」我在$$杭州工做%%,如今@沒事學&*Python!」 中的特殊符號替換成空格,替換後的字符串爲:」我在 杭州工做 ,如今 沒事學 Python 「

#!/usr/bin/python3
# -*- coding: UTF-8 -*-
import re
str = "我在$$杭州工做%%,如今@沒事學&*Python!"
str1 = re.sub('[$%@&*!]+',' ',str)
print(str1)

輸出結果:

我在 杭州工做 ,如今 沒事學 Python
相關文章
相關標籤/搜索