الرجوع
تسجيل الدخول
أنت تتصفح نسخة مؤرشفة من الموقع اضغط للانتقال إلى الموقع الجديد بكامل المزايا

What is the output of the following Python program?

temp = 32
if temp > 30:
    print("It's hot")
elif temp > 20:
    print("It's nice")
else:
    print("It's cold")
print("Weather report complete.")