#按順序輸入字串、列表、元組,判斷是否為空,輸出哪乙個為空或輸出都沒有
deffunc
(zifuchuan,liebiao,yuanzu):if
len(zifuchuan)==0
orlen
(liebiao)==0
orlen
(yuanzu)==0
:#三者存在空項,若不存在則輸出『都沒有』
iflen
(zifuchuan)==0
:#長度為0判斷是否為空
print
('字串為空')if
len(liebiao)==0
:print
('列表為空')if
len(yuanzu)==0
:print
('元組為空'
)else
:print
('都沒有'
)func('',
[1],
(1,3
,2))
#按順序輸入字串、列表、元組
重複值判斷練習題
請設計乙個高效演算法,判斷陣列中是否有重複值。必須保證額外空間複雜度為o 1 給定乙個int陣列a及它的大小n,請返回它是否有重複值。解題思路 高效演算法我就呵呵了,明顯是堆排序了而且滿足空間複雜度了o 1 public boolean checkduplicate int a,int n heap...
python書中練習題 python練習題
1 定義乙個空列表,接收從鍵盤輸入的整數,把列表傳給乙個從大到小排序的函式,再輸出排序後的列表的值 listex b 0 a int input 請輸入列表長度 while b a num int input 請輸入字元 b 1 print listex sum 0 for i in range 0...
python的練習題 Python練習題
1 使用while迴圈輸入1 2 3 4 5 6 8 9 10 i 0while i 10 i i 1 if i 7 continue print i 結果 e python python python test.py1 2 求1 100的所有數的和 i 0sum 0 while i 100 i 1...