যখন ক্লাস ব্যবহার করে একটি বৃত্তের ক্ষেত্রফল এবং পরিধি খুঁজে বের করার প্রয়োজন হয়, তখন অবজেক্ট ওরিয়েন্টেড পদ্ধতি ব্যবহার করা হয়। এখানে, একটি শ্রেণী সংজ্ঞায়িত করা হয়, এবং গুণাবলী সংজ্ঞায়িত করা হয়। ফাংশন নির্দিষ্ট অপারেশন সঞ্চালন যে শ্রেণীর মধ্যে সংজ্ঞায়িত করা হয়. ক্লাসের একটি উদাহরণ তৈরি করা হয়, এবং ফাংশনগুলি বৃত্তের ক্ষেত্রফল এবং পরিধি খুঁজে বের করতে ব্যবহৃত হয়।
নীচে একই −
এর জন্য একটি প্রদর্শন রয়েছে৷উদাহরণ
import math class circle_compute(): def __init__(self,my_radius): self.radius=my_radius def area_calculate(self): return math.pi*(self.radius**2) def perimeter_calculate(self): return 2*math.pi*self.radius my_result = int(input("Enter the radius of circle...")) my_instance = circle_compute(my_result) print("The radius entered is :") print(my_result) print("The computed area of circle is ") print(round(my_instance.area_calculate(),2)) print("The computed perimeter of circle is :") print(round(my_instance.perimeter_calculate(),2))
আউটপুট
Enter the radius of circle...7 The radius entered is : 7 The computed area of circle is 153.94 The computed perimeter of circle is : 43.98
ব্যাখ্যা
- 'circle_compute' ক্লাস নামক একটি শ্রেণী সংজ্ঞায়িত করা হয়েছে, যেটির ফাংশন আছে 'এরিয়া_ক্যালকুলেট', 'পেরিমিটার_ক্যালকুলেট'।
- এগুলি যথাক্রমে একটি বৃত্তের ক্ষেত্রফল এবং পরিধি গণনা করতে ব্যবহৃত হয়৷
- এই ক্লাসের একটি উদাহরণ তৈরি করা হয়েছে।
- ব্যাসার্ধের মান প্রবেশ করানো হয় এবং এটিতে অপারেশন করা হয়।
- প্রাসঙ্গিক বার্তা এবং আউটপুট কনসোলে প্রদর্শিত হয়।