___。
4、轉義字元』\n』的含義是_______回車換行____________。
5、表示式 『ab』 in 『acbed』 的值為__false______。
6、表示式 int(40.5) 的值為____2________。
7、已知 x = ,那麼執行語句 x[2] = 3 之後,x 的值為____。
8、表示式 [x for x in [1,2,3,4,5] if x<3] 的值為[1,2]。
9、已知 x = 『123』 和 y = 『456』,那麼表示式 x + y 的值為』123456』
。10、已知 x = list(range(20)),那麼語句 print(x[100:200])的輸出結果為
_____
2、如果乙個字串從前往後和從後往前讀時是一樣的,那麼這個字串就是回文串。請
編寫乙個函式判斷是否為回文串,同時編寫測試**檢驗回文串。(提示使用切片,注意
列表索引的使用)。
def ispalindrome(s)
if s==s[::-1]: #切片操作,倒序和順序一樣
return true
else:
return false
s=input(『input a string:』)
if ispalindrome(s):
print(『%s is a palindrome!』%s)
else:
print(『%s is not a palindrome!』%s)
757 期末考試
時間限制 1000 ms 記憶體限制 65535 kb 難度 2 描述 馬上就要考試了,小t有許多作業要做,而且每個老師都給出來了作業要交的期限,如果在規定的期限內沒 交作業就會扣期末成績的分數,假設完成每門功課需要一天的時間,你能幫助小t扣除的分數最小嗎?輸入輸入n,表示n門功課 n 2000 接...
Python筆記1 期末考試複習
1.zip zip iter1 iter2 zip object return a zip object whose next method returns a tuple wherethe i th element comes from the i th iterable argument.the...
codevs 2915 期末考試
時間限制 1 s 空間限制 16000 kb 題目等級 gold 題目描述 description 期末考試要來了,某同學正在努力複習。他要複習n個知識點,每個知識點需要一定的知識做基礎。現給你乙個aov網,其中有m條邊。問他能考得怎樣?假設他只要複習了就不會出錯,沒複習就什麼也不會 輸入描述 in...