0
يمكنك استخدام ChatGPT لتصحيح الأخطاء وإنشاء التعليمات البرمجية وإعادة التنسيق وإضافة التعليقات والمزيد.
إنشاء التعليمات البرمجية
إن توجيه ChatGPT لإنشاء التعليمات البرمجية أمر بسيط مثل هذا:
Act as a junior python programmer. Please write the code to generate madlibs from 3 arrays of 6 items each: prepositions, verbs and nouns, with the nouns also being used as direct objects. After writing it, execute the code.
سيكون الناتج شيئًا مثل:
import random
prepositions = ['at', 'in', 'on', 'with', 'under', 'over']
verbs = ['run', 'jump', 'dance', 'sing', 'laugh', 'cry']
nouns = ['cat', 'dog', 'tree', 'flower', 'book', 'computer']
preposition = random.choice(prepositions)
verb = random.choice(verbs)
noun = random.choice(nouns)
madlib = f"I {verb} {preposition} the {noun}."
print(madlib)
التعليق وإعادة تنسيق الكود
يمكنك أن تطلب من ChatGPT إضافة تعليقات إلى الكود الخاص بك وإعادة تنسيقه ليصبح واضحًا. بعد التعليمات الفورية، أضف ثلاث علامات تصنيف ثم الصق الكود الذي تريد تنظيفه:
Please add line comments to this Python code and reformat it for legibility:
import math
amplitude = 30
frequency = 2
num_points = 50
for i in range(num_points):
y = int(round(amplitude * math.sin(2 * math.pi * frequency * i / num_points)))
print(' ' * (amplitude + y) + '*')
سيكون الناتج شيئًا مثل:
# Import the math module
import math
# Set the amplitude, frequency, and number of points in the wave
amplitude = 30
frequency = 2
num_points = 50
# Loop over each point in the wave
for i in range(num_points):
# Calculate the y value of the wave using the sine function from the math module
y = int(round(amplitude * math.sin(2 * math.pi * frequency * i / num_points)))
# Print a space for padding, followed by an asterisk at the appropriate position on the wave
print(' ' * (amplitude + y) + '*')
تصحيح الأخطاء
لا يستطيع ChatGPT اكتشاف أخطاء بناء الجملة في الكود فحسب، بل يمكنه أيضًا العثور على الأخطاء المنطقية التي قد تظهر عند تنفيذ الكود. فيما يلي مثال لنص برمجي بلغة Python يتسبب في النهاية في حدوث خطأ القسمة على صفر في السطر الرابع بسبب خطأ منطقي في السطر الثالث. جرّب هذا الموجه البسيط للعثور على الخطأ وإصلاحه:
Please debug this Python code:
1. pizza_cost = 100
2. partygoers = 10
3. while partygoers = 0:
4. cost_per_person = pizza_cost / partygoers
5. print("the cost per person is $", "{:.2f}".format(cost_per_person))
6. partygoers -= 2
سيتضمن الإخراج حلقة while المصححة، والتي تم تغييرها لضمان بقاء متغير المقام موجبًا:
3. while partygoers > 0:
بالنسبة للأخطاء الأكثر دقة، قد تحتاج إلى إضافة تفاصيل أكثر: رسالة الخطأ، أو متغيرات البيئة، أو المكتبات المضمنة، أو الاختلافات في المدخلات.
تحسين الكود
إذا استغرق تنفيذ البرنامج النصي وقتًا طويلاً، فيمكن لبرنامج ChatGPT تحسينه. فيما يلي مثال لتحسين برنامج نصي غير فعال يبحث عن الأعداد الأولية:
Act like a very senior python developer. Please optimize this script:
for num in range(1, 101):
if num 1:
for i in range(2, num):
if (num % i) == 0:
break
else:
print(num)
قد يكون الناتج عبارة عن نص برمجي يستخدم خوارزمية غربال إراتوستينس للعثور على الأعداد الأولية:
numbers = list(range(2, 101))
for i in numbers:
for j in range(i * 2, 101, i):
if j in numbers:
numbers.remove(j)
print(numbers)
لاحظ أننا طلبنا من الروبوت أن "يتصرف مثل مطور كبير" لتحسين البرنامج النصي. يمكنك أيضًا أن تطلب منه أن يكون لديه مجال خبرة معين (على سبيل المثال، خوارزميات الفرز) أو عدد سنوات الخبرة. بدلاً من ذلك، إذا كان لديك برنامج نصي يبدو معقدًا للغاية، فيمكنك أن تطلب من ChatGPT كتابة هذا البرنامج النصي "كمطور مبتدئ للغاية".
الترجمة بين لغات البرمجة
تتمثل إحدى الميزات المفيدة للغاية التي يوفرها ChatGPT في القدرة على نقل البرامج من لغة إلى أخرى. قد يكون الاستخدام النموذجي لهذا هو ترقية الكود بلغة قديمة إلى لغة أكثر حداثة:
Act like an experienced developer with knowledge of both COBOL and Python. Please convert this COBOL program to Python:
IDENTIFICATION DIVISION.
PROGRAM-ID. CALCULATE-SS-TAX.
DATA DIVISION.
WORKING-STORAGE SECTION.
01 SALARY PIC 9(7)V99.
01 SS-TAX PIC 9(7)V99.
PROCEDURE DIVISION.
DISPLAY "Enter employee's salary: ".
ACCEPT SALARY.
COMPUTE SS-TAX = SALARY * 0.062.
DISPLAY "Social Security tax is: $", SS-TAX.
STOP RUN.
قد يكون الناتج شيئًا كهذا:
salary = float(input("Enter employee's salary: "))
ss_tax = salary * 0.062
print("Social Security tax is: $", round(ss_tax, 2))