繁体   English   中英

按重要性排序输入

[英]Sort an input by order of importance

我不是编码员,但了解 Python 基础知识。 我希望我的用户输入一个随机列表,例如:

Reuters
The New York Times
The Wall Street Journal
Associated Press
Financial Times

并让我的代码根据索引位置对其进行排序:

outlet = [ 'The Wall Street Journal', 'The New York Times', 'Associated Press', 'Reuters', 'Financial Times', 'USA Today','Bloomberg','CNBC']

所以它打印有序并在新行上:

The Wall Street Journal 
The New York Times
Associated Press
Reuters
Financial Times

谢谢!

我到目前为止的代码如下:

 ranking = [ 'The Wall Street Journal', 'The New York Times', 'Associated Press', 'Reuters', 'Financial Times', 'USA Today','Bloomberg','CNBC']
print('Enter new coverage:')
coverage = input()
listed = coverage.split()
print(*listed, sep="\n")

好的,如果您有列表a = [Reuters, The New York Times, The Wall Street Journal, Associated Press, Financial Times]并且您想根据列表ranking = [ 'The Wall Street Journal', 'The New York Times', 'Associated Press', 'Reuters', 'Financial Times', 'USA Today','Bloomberg','CNBC']对其进行排序ranking = [ 'The Wall Street Journal', 'The New York Times', 'Associated Press', 'Reuters', 'Financial Times', 'USA Today','Bloomberg','CNBC']你可以通过遍历ranking列表来做,看看列表是否aranking列表的第一个元素,如果有第二个,依此类推。 代码将是这样的:

a = [Reuters, The New York Times, The Wall Street Journal, Associated Press, Financial Times]
ranking = [ 'The Wall Street Journal', 'The New York Times', 'Associated Press', 'Reuters', 'Financial Times', 'USA Today','Bloomberg','CNBC']

for element in ranking:
  for i in a:
    if i == element:
      print(i)

结果:

The Wall Street Journal
The New York Times
Associated Press
Reuters
Financial Times

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM