Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
文字列に含まれる「CG」の割合を計算するコードを設計しました。GC_content(DNA)。
これで、このコードを使用して、GC コンテンツが最も高い文字列の値を出力できます。
print (max((GC_content(DNA1)),(GC_content(DNA2)),(GC_content(DNA3)))).
この最大 GC_content の変数名を出力するにはどうすればよいでしょうか。
あなたがしたいようです
max([DNA1, DNA2, DNA3], key=GC_content)
それはあなたが求めたものではありませんが、あなたが必要としているもののようです。