2.01 - Basic print
ভিডিও নংঃ ২.০১ ( Basic Print )
print('Hello')
print("hello world")
print(5)
print(5.2)
print(2+3)
print(2/3)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