標準python找尋string的方法如下(回答True/False) word1='bird' word2='dog' string='bird on tree' print (word1 in string) print (word2 in string) #Output# #True ...
確定! 回上一頁