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.
ラムダを使用して次の関数を終了したい:
for i in range(0, len(testingList)): testingList[i] = testing[i][1:-1]
ラムダを使用してビルドする方法がわかりません。
どうもありがとうございました。
それを に適合させるには、lambdaそれを 1 つの式にする必要があります。リスト内包表記はそれを行うことができます:
lambda
somename = lambda tl: [elem[1:-1] for elem in tl]
これを次のように呼び出しますtestingList:
testingList
testingList = somename(testingList)