私はかなり初心者で、生年月日を比較する簡単なプログラムを作りたいと思っていました。これまでのところ、このコードブロックがあります
y1 = int(input("Enter the year of birth of person 1 in the form of YYYY"+" "))
m1 =int(input("Enter the month of birth of person 1 in the form of MM"+" "))
d1 =int(input("Enter the day of birth of person 1 in the form of DD"+" "))
y2 = int(input("Enter the year of birth of person 2 in the form of YYYY"+" "))
m2 =int(input("Enter the month of birth of person 2 in the form of MM"+" "))
d2 =int(input("Enter the day of birth of person 2 in the form of DD"+" "))
生年月日が異なる限り、生年月日を正常に比較できます.生年月日が同じ場合に生年月日を比較するコードの書き方がわかりません.出生日は同じで、生年月日を比較してそれに応じて出力します。
Python Gui Idle を開いてプロジェクトを保存する方法をほとんど知らないので、特に Python の詳細な知識を参照している場合、難しい答えを理解できないことに注意してください。