1樓:匿名使用者
我用的是python3.6.x ,剛才一個題和這個一樣是你問的嗎?
2樓:
def same_first_name(name1, name2):
if name1 is none or name2 is none:
print 'name1 or name2 is none'
elif type(name1) != type() or type(name2) != type():
print 'name1 or name2 no list'
elif len(name1) * len(name2) == 0:
print 'list name1 or list name2 is empty'
elif name1[0] == name2[0]:
return true
else:
return false
print same_first_name(['john', 'smith'], ['john', 'harkness'])
print same_first_name(['john', 'smith'], ['matt', 'smith'])
的cmos跳線設為清除選項,或者設定成外接電池,使
3樓:玩轉資料處理
可以有償代實現你的需求
python程式設計題
4樓:改畫
思路基本都是先新建一個list,然後向新的list中依次新增符合的元素
python程式設計題:輸入圓半徑,輸出圓面積
5樓:我是果瘋
r=eval(input("請輸入圓的半徑:"))pi=3.14
s=pi*r**2
print("圓的面積是:{}".format(s))如果需要更精確的面積,可呼叫math庫,即可獲得更精確的答案。
擴充套件資料:eval() 函式用來執行一個字串表示式,並返回表示式的值。
以下是 eval() 方法的語法:
eval(expression[, globals[, locals]])
引數:expression -- 表示式。
globals -- 變數作用域,全域性名稱空間,如果被提供,則必須是一個字典物件。
locals -- 變數作用域,區域性名稱空間,如果被提供,可以是任何對映物件。
6樓:超級可愛的一哥
r=eval(input("請輸入半徑:"))
s='圓面積為:'+str(3.14*r*r)
print(s)
7樓:paipai蟲
#coding:utf-8
#author:chenhaifei
a=input("請輸入圓的半徑")
b=3.14*a*a
print b
python程式設計題?
8樓:匿名使用者
import math
print math.pow(2,input('輸入數字:')
用python程式設計求1 ,用python程式設計求1 1 2 1 3 1 4 1 5 累加和,資料項小於0 1時停止
樹不開叉 def summa summ 0 for i in range 1,100 fl 1.0 i if fl 0.1 summ fl else print the sum is summreturn sum summa 注意縮排 def iteritem limit x 1.while 1 v...
Python簡單程式設計,什麼是python程式設計
def getnumofblocks layer return sum sum range 1,k 1 for k in range 1,layer 1 使用 傳入 layer 引數print getnumofblocks 4 輸出 注意 return 行 要縮排!安裝python直譯器。大多數使用...
python程式設計2 1 3 2 5 3 8 5 13 8前50項和
x 1.0 y 2.0 ret 0 for i in range 50 ret y x t yy x x tprint ret well,cause i noticed that some of the number can t be divided exactly,so i thought kee...