Ali Ismael نشر 4 نوفمبر 2021 أرسل تقرير نشر 4 نوفمبر 2021 على فرض لدينا الرسم البياني التالي: import numpy as np import matplotlib.pyplot as plt x = range(15) y = range(15) p = plt.plot(x,y, x,y*2, x,y*3) كيف يمكننا معرفة لون كل شكل في الرسم لتخزينه في متغير؟ 1 اقتباس
0 Ali Haidar Ahmad نشر 4 نوفمبر 2021 أرسل تقرير نشر 4 نوفمبر 2021 يمكنك استخدام الدالة get_color بالشكل التالي: import numpy as np import matplotlib.pyplot as plt x = np.arange(15) y = np.arange(15) p = plt.plot(x,y, x,y*2, x,y*3) print("The color of the first drawing is: "+p[0].get_color()) # لون الشكل الأول print("The color of the second drawing is: "+p[1].get_color()) # لون الشكل الثاني print("The color of the third drawing is: "+p[2].get_color()) # الثالث # الخرج: """ The color of the first drawing is: #1f77b4 The color of the second drawing is: #ff7f0e The color of the third drawing is: #2ca02c """ اقتباس
0 Rok Kor نشر 12 أكتوبر 2023 أرسل تقرير نشر 12 أكتوبر 2023 كيف أعرض واضع شكل هندسى فى ملف وورد من صور او pdf اقتباس
السؤال
Ali Ismael
على فرض لدينا الرسم البياني التالي:
كيف يمكننا معرفة لون كل شكل في الرسم لتخزينه في متغير؟
2 أجوبة على هذا السؤال
Recommended Posts
انضم إلى النقاش
يمكنك أن تنشر الآن وتسجل لاحقًا. إذا كان لديك حساب، فسجل الدخول الآن لتنشر باسم حسابك.