python基礎 程式的實現(一)
'''兩整數相加'''
a,b=map(int,input().split())
print(a+b)
# 6 9
# 15
'''計算圓的面積'''
from math import *
x=eval(input(""))
y=pi*pow(x,2)
print('%.7f'%y)
# 2# 12.5663706
'''1+2+...+n'''
n=eval(input(''))
y=int((1+n)*n/2)
print(y)
# 100
# 5050
'''階乘'''
n = int(input())
ans = 1
for i in range(1,n+1):
ans = ans * i
print(ans)
# 6# 720
'''輸入序列排序'''
n=eval(input(""))
ls=list(map(int,input().strip().split()))
ls.sort()
for i in ls:
print(i,end=" ")
# 5# 1 6 2 8 9
# 1 2 6 8 9
'''水仙花數'''
for i in range(100,1000):
a = i // 100
b = i % 100 // 10
c = i % 100 % 10
if ((a**3 + b**3 + c**3) == i):
print(i,end = " ")
# 153 370 371 407
'''輸入乙個正整數n, 求所有這樣的五位和六位十進位制回文數,滿足各位數字之和等於n '''
n=int(input())
for i in range(10000,1000000):
if str(i)==str(i)[::-1] and sum(map(int,str(i)))== n:
print(i)
python練習小程式
1.今年是否為閏年 import time thisyear time.localtime 0 print time.localtime if thisyear 400 0 or thisyear 4 0 and thisyear 100!0 print this year s is leap ye...
Python 列表練習程式
1.對以下列表中的第乙個元素首字母大小並輸出,輸出最後乙個元素 bicycles trek cannondale redline print bicycles 0 title 對bicycles的第乙個元素首字母大寫並輸出 print bicycles 1 title 索引 1代表最後乙個元素 an...
Python 練習程式 02
coding utf 8 calcualte 5 def tang i sum value 0 if i 0 sum value 1 else sum value i tang i 1 return sum value for j in range 10 print d d j,tang j run...