0
python 3プログラムでコード出力列を並べていることについて長年のlurkerに質問があります。選挙プログラムのための私のコードはここにありますが、私はお互いに並んで出力を得ることに問題があります。その取引が何であるか不思議だった。/tを使用してみましたが運がありませんでした。python 3.x - 出力アライメントを修正するには
def getcandidates():
candidate_number = input("Enter the number of the candidates in the election: ")
candidate_number = int(candidate_number)
return candidate_number
def get_votes(num_candidates):
candidate_names = []
candidate_votes = []
space = (20 - len(candidate_names)) * " "
percent = 10
print("{0}{1} - {2}%".format(candidate_names, space, percent))
for candidate in range(0, num_candidates):
name = input("Enter the name of candidate #{}: ".format(candidate + 1))
vote = input("Enter the number of votes for candidate {}: ".format(candidate + 1))
candidate_names.append(name)
candidate_votes.append(int(vote))
return candidate_names, candidate_votes
def calculate_results(names, votes):
print("Election Results")
print('-' * 45)
total_votes = sum(votes)
for candidate in range(0, len(names)):
if votes[candidate] == max(votes):
print("{} \t - {:2.1f}% <-- First Place".format(names[candidate], votes[candidate]/total_votes * 100))
elif votes[candidate] == min(votes):
print("{} \t - {:2.1f}% <-- Last Place... HAHAHAHA!".format(names[candidate], votes[candidate]/total_votes * 100))
else:
print("{} \t - {:2.1f}%".format(names[candidate], votes[candidate]/total_votes * 100))
candidates = getcandidates()
candidate_names, candidate_votes = get_votes(candidates)
calculate_results(candidate_names, candidate_votes)
は...あなたの代わりに、画像へのリンクの問題で使用される実際のコードを入れて、あなたのコードを記述し、それを選択し、編集ボックスの上に中括弧を使用してくださいインデントする。 –
ねえ男。コードをコピーして貼り付けてください。コードのスクリーンショットはここではうまく受信されません。D – Jeronimo
固定コードフォーマットがここに正しく表示されるはずです。 –