2.01 - Basic print

ভিডিও নংঃ ২.০১ ( Basic Print )

টিউটোরিয়াল লিঙ্কঃ https://youtu.be/IB-b3BFVsqM

পাইথনে আউটপুট ডিসপ্লে করার জন্য আমরা print ফাংশন ব্যাবহার করি । নিচের কয়েকটি প্রিন্ট স্টেটমেন্ট দেখি এবং বোঝার চেষ্টা করি ।

print('Hello')
print("hello world")
print(5)
print(5.2)
print(2+3)
print(2/3)

quote প্রিন্ট করার ক্ষেত্রে একটু সাবধান থাকতে হয়। নিচের কয়েকটি প্রিন্ট স্টেটমেন্ট দেখি এবং বোঝার চেষ্টা করি ।

print('Here is "double" quote')
print("Here is 'single' quote")

print('Here is \'single\' quote')
print("Here is \"double\" quote")

print('Here is both \'single\' and "double" quote')

print("""Easiest way to use both 'single' and "double" quote""")
print(''' another easiest way to use both 'single' and "double" quote''')

Last updated