第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機(jī)立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

如何比較數(shù)組的兩個索引(不是這些索引的值)?

如何比較數(shù)組的兩個索引(不是這些索引的值)?

茅侃侃 2021-12-26 15:16:34
我需要制作一個程序來定義這個詞是否是字謎。嗯,這是我的代碼。標(biāo)有 的線條## here反映了主要問題。我需要定義的索引word1和word2第一和第二的for循環(huán),然后對它們進(jìn)行比較。如果這些索引相似,那么程序就會錯過這個詞(因?yàn)樗诘鷷r出現(xiàn)了兩次)。我知道,代碼還沒有完成text_sample = 'text goes here'c = 0i = 0isanagramma = 0n = len(text_sample)while c < len(text_sample):    for word1 in text_sample:        for word2 in range(1,n):            s1 = sorted(word1)            s2 = sorted(text_sample[word2])            index1 = text_sample.index(word1)                ## here            index2 = text_sample.index(text_sample[word2])   ## here            if index1 == index2:                             ## here                continue                                     ## here            if s1 == s2:                isanagrama+=1            i+=1    c+=1print(isanagramma)
查看完整描述

1 回答

?
滄海一幻覺

TA貢獻(xiàn)1824條經(jīng)驗(yàn) 獲得超5個贊

text_sample = 'text goes here ttex'


s = text_sample.split(" ")

isanagramma = 0

for i in range (0,len(s)-1):

    for x in range(i+1,len(s)):

        if sorted(s[i]) == sorted(s[x]):

            print ("is anagram :{} and {}".format(s[i],s[x]))

            isanagramma += isanagramma 

        else:

            print ("not anagram :{} and {}".format(s[i],s[x]))


print (isanagramma)

輸出:


not anagram :text and goes

not anagram :text and here

is anagram :text and ttex

not anagram :goes and here

not anagram :goes and ttex

not anagram :here and ttex

1


查看完整回答
反對 回復(fù) 2021-12-26
  • 1 回答
  • 0 關(guān)注
  • 152 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號