Skip to main content

পাইথন প্রোগ্রামিং ল্যাংগুয়েজে print() ফাংশন কিভাবে কাজ করে?

এখন আমরা শিখবো কিভাবে পাইথনের print() ফাংশনটি কিভাবে কাজ করে। পাইথন প্রোগ্রামিং ল্যাংগুয়েজ এর মাদ্ধমে কিভাবে আমরা আমাদের মনের ভাব প্রকাশ করতে পারি সেইটা দেখবো।


আমাদের প্রতিটা মানুষেরই একটি নাম আছে, আর এই নামই হলো তার পরিচয়। ঠিক তেমনিই প্রতিটা প্রোগ্রামিং ল্যাংগুয়েজেরই একটি পরিচয় আছে, আর সেইটা হলো এক্সটেনশন। এক্সটেনশনের মাদ্ধমে আমরা চিনতে বা বুঝতে পারি কোন প্রোগ্রামিং লাঙ্গুয়েজটি। তাই আমরা প্রথমেই একটি পাইথন ফাইল তৈরী করে নিবো। এবং ফাইল এর এক্সটেনশন অবশ্যয় (.py) দিয়ে সেভ করতে হবে। 


এখন এই ফাইলের এক্সটেনশন দেখে আমরা বুঝতে পারছি যে, এইটা পাইথন প্রোগ্রামিং ল্যাংগুয়েজ এর ফাইল। এখন আমরা এই পাইথনের ফাইলটি যেকোনো এডিটর দিয়ে ওপেন করবো।

পাইথন প্রোগ্রামিং ল্যাংগুয়েজে কোনো কিছুর আউটপুট দেখতে হলে প্রিন্ট() ফাংশনটি ব্যবহার করা হয়। প্রথমেই আমরা প্রিন্ট ফাংশনটি লিখবো। এই প্রিন্ট() ফাংশনের মাদ্ধমেই আমরা যেকোনো লিখা প্রদর্শন করতে পারি। এবং দেখতে পারি আমাদের প্রোগ্রামটি কি আউটপুট দিচ্ছে। 


এখন আমরা এই প্রিন্ট() ফাংশনের ভেতর ডাবল কোটেশন (" ") দিবো। এবং এই ডাবল কোটেশনের ভেতর আমরা যা কিছুই লিখি না কেন সেইটা আউটপুট হিসেবে দেখাবে। আমরা এখন এই ডাবল কোটেশনের ভেতরে নিজেদের নাম লিখবো। এবং পাইথন প্রোগ্রামটি রান করে দেখবো যে আসলেও আমাদের নাম লিখা দেখায় কি।


পাইথন প্রোগ্রামটি রান করার পর আমরা দেখতে পেলাম আমাদের নামটি খুব সুন্দর ভাবে প্রিন্ট করে দেখালো। আমরা মুটামুটি ধারণা পেলাম পাইথন প্রোগ্রামিং ল্যাঙ্গুয়েজে কিভাবে প্রিন্ট() ফাংশনটি কাজ করে।


প্রিন্ট() ফাংশনের ভেতর আরও কিছু প্যারামিটার আছে যেগুলোর সাহায্যে আমরা আমাদের অউটপুটটি বিভিন্ন ভাবে দেখতে পারি। এবং এই প্যারামিটারগুলো কিভাবে কাজ করে বা এইগুলো কিভাবে ব্যবহার করা যায়, সেগুলোর জন্য আমরা একটি ভিডিও টিউটোরিয়াল বানিয়েছি। এই ভিডিও টিউটোরিয়ালের মাদ্ধমে অতি সহজেই বুঝতে পারবেন কিভাবে প্রিন্ট() ফাংশনের প্যারামিটারগুলো কাজ করে।

Comments

Popular posts from this blog

Why do we learn Python? / Why is Python so popular?

We use a programming language to highlight modernity in software. When creating software, it is important to make sure that the software is easy for people to use. And based on this, many programming languages ​​have been created over the ages. More than 500 programming languages ​​have been created since 1539 ( list of programming languages ). Every language is built to make the software more advanced so that everyone can do their work more easily and adapt to modernity. Python has dominated the programming world since the 1990s. The hearts of many developers have taken place from the very beginning. When it comes to creating software, the question arises in the minds of the developers in which programming language is the easiest and in the shortest possible time to make the software the most beautiful and the most secure. Based on all this,  Guido van Rossum has created the Python programming language. He is currently leading the development of Python. He has been honored as the lif

How the print () function works in Python programming language?

Now we will learn how Python's print () function works. Let's see how we can express ourselves through the Python programming language. Every human being has a name, and this name is his identity. Likewise, every programming language has an identity, and that is an extension. Extensions allow us to recognize or understand which programming language. So we will first create a Python file. And the extension of the file must be saved with (.py) . Now looking at the extension of this file, we understand that this is a file of Python programming language. Now we will open this Python file with any editor. The print () function is used to view the output of something in the Python programming language. First, we will write the print function. We can display any text using this print () function. And we can see what our program is outputting. Now we will put a double quotation ("") inside this print () function. And whatever we write inside this double quotation will show as