colors = []
colors_0 = input("add the first color you like: \n")
colors.append(colors_0)
colors_1 = input("Do you want to add more colors? yes or no? \n").lower()
if colors_1 == 'yes':
far_color = input("add another color to the list:")
colors.append(far_color)
print(f"the colors you like are: {colors}")
else:
print(f"the color you like is: {colors}")
السؤال
أمير أحمد لطيف هاشم
else اكوو خطا تحديدا ب
colors = [] colors_0 = input("add the first color you like: \n") colors.append(colors_0) colors_1 = input("Do you want to add more colors? yes or no? \n").lower() if colors_1 == 'yes': far_color = input("add another color to the list:") colors.append(far_color) print(f"the colors you like are: {colors}") else: print(f"the color you like is: {colors}")
6 أجوبة على هذا السؤال
Recommended Posts
انضم إلى النقاش
يمكنك أن تنشر الآن وتسجل لاحقًا. إذا كان لديك حساب، فسجل الدخول الآن لتنشر باسم حسابك.