題目:
test_dict =
# 輸出原始的字典
print
("字典移除前 : "
+str
(test_dict)
)# 使用 del 移除 zhihu
del test_dict[
'zhihu'
]# 輸出移除後的字典
print
("字典移除後 : "
+str
(test_dict)
)# 移除沒有的 key 會報錯
# 輸出原始的字典
print
("字典移除前 : "
+str
(test_dict)
)# 使用 pop 移除 zhihu
removed_value = test_dict.pop(
'zhihu'
)# 輸出移除後的字典
print
("字典移除後 : "
+str
(test_dict)
)print
("移除的 key 對應的 value 為 : "
+str
(removed_value)
)print
('\r'
)# 使用 pop() 移除沒有的 key 不會發生異常,我們可以自定義提示資訊
,'沒有該鍵(key)'
)# 輸出移除後的字典
print
("字典移除後 : "
+str
(test_dict)
)print
("移除的值為 : "
+str
(removed_value)
)
test_dict =
# 輸出原始的字典
print
("字典移除前 : "
+str
(test_dict)
)# 使用 pop 移除 zhihu
new_dict =
# 輸出移除後的字典
print
("字典移除後 : "
+str
(new_dict)
)
class
solution
:def
numjewelsinstones
(self, jewels:
str, stones:
str)
->
int:
return
sum(stones.count(i)
for i in jewels)
class
solution
:def
kidswithcandies
(self, candies: list[
int]
, extracandies:
int)
-> list[
bool]:
k=max(candies)
return
[i+extracandies>=k for i in candies]
class
solution
:def
numjewelsinstones
(self, jewels:
str, stones:
str)
->
int:
return
sum(stones.count(i)
for i in jewels)
7月26日學習日誌
學習日誌 姓名 郭富民 日期 2017.07.26 今日學習任務 延時原理,中斷程式設計基礎,printf串列埠程式,串列埠初始化,fput重定義,外部中斷。今日任務完成情況 詳細說明本日任務是否按計畫完成,開發的 量。今日任務已按計畫完成。在老師的指導下編寫exti中斷,usart串列埠配置顯示一...
7月26日 學習日誌
一 變數的儲存型別 1.register int a 1 定義乙個暫存器變數,a存放在暫存器中,暫存器變數不能取位址 2.extern int a 1 宣告乙個外部變數,宣告不用分配空間 定義變數要分配空間 3.static 1 在函式外部 static int a 1 static 修飾全域性變數...
日誌2月23日
今天繼續複習了nct3級和python省賽要考的 斐波那契數列 n int input 請輸入乙個整數 deffab n if n 1 print 輸入有誤!return 1 if n 1or n 2 return 1else return fab n 1 fab n 2 result for i ...