ভিডিও নংঃ ২.০৪ ( Comments )

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


পাইথনে কমেন্ট করার জন্য আমরা # , ''', """ ব্যাবহার করি । নিচের কয়েকটি স্টেটমেন্ট দেখি এবং বোঝার চেষ্টা করি ।

# ব্যাবহার করে কমেন্ট করা - এক লাইন কমেন্ট এর জন্য

# this is a full line comment
print('Hello') # this is a partial line comments
print('# this is not a comment as it is inside quote')

একাধিক লাইন কমেন্ট করার জন্য আমরা ''' ব্যাবহার করি ।

'''
I can comment multiple lines.
For example:
This is line number 3
'''

""" ব্যাবহার করেও একাধিক লাইন কমেন্ট করা যায় ।

'''
Another way that I can comment multiple lines.
For example:
This is line number 3
'''

results matching ""

    No results matching ""