3

我有一个如下的python函数。我想在 C# 中调用函数并传递 2 个列表参数?它返回一个排名列表。这可能吗?如何?感谢您的帮助

function ranking_option() #accepts two arguments:
  def Ranking_Options(costs, savings):
  ##Lets us form a list of list from the supplied data

  rearranged_list = sorted([[costs[i], savings[i]] for i in range(len(costs))], reverse=False)
  rankedlist = [rearranged_list[0]] #We form a new list of the ranked data coordinates 

  #Examine the sorted list one by one
  for pair in rearranged_list[1:]:

        if pair[0]>=rankedlist[-1][0] and pair[1]>=rankedlist[-1][1]:
            rankedlist.append(pair)
            if rankedlist[-2][0]==rankedlist[-1][0] and rankedlist[-2][1]<=rankedlist[-1][1]:
                rankedlist[-2],rankedlist[-1]=rankedlist[-1],rankedlist[-2]
        else:

            if pair[0]==rankedlist[-1][0] and pair[1]>=rankedlist[-1][1]:
               rankedlist[-1]=pair
            rankedlist.append(pair)
return rankedlist
4

1 回答 1

2

我的博客上有一篇关于从 C# 调用 Python COM 服务器的帖子。它应该有助于您尝试做的事情。COM 将使互操作更容易,但设置它需要一些工作。 http://www.midniteblog.com/?p=64

于 2013-05-17T16:51:40.063 回答