পাইথন প্রোগ্রামিং টিউটোরিয়াল সহায়িকা
  • পাইথন প্রোগ্রামিং টিউটোরিয়াল সহায়িকা
  • 01. Introduction
    • 1.01 - Welcome to Python
    • 1.02 - Environment Setup ( Windows + Linux )
    • 1.03 - Setup Text editor ( Sublime Text )
    • 1.04 Rules and Guidelines ( Introduction )
  • 02. Basic
    • 2.01 - Basic print
    • 2.02 - Indentation
    • 2.03 - Simple Calculation
    • 2.04 - Comments
    • 2.05 - Errors
    • 2.06 - Python Datatypes
    • 2.07 - Variables
    • 2.08 - Keywords
    • 2.09 - Object type, id, value
    • 2.10 - help(), dir()
    • 2.11 - Delete a Variable
    • 2.12 - print() Once Again
    • 2.13 - print() basic format
    • 2.14 - Example 01 Area of a circle
    • 2.15 - Console Input
    • 2.16 - Input Basic
    • 2.17 - Type Casting
Powered by GitBook
On this page
  1. 02. Basic

2.12 - print() Once Again

ভিডিও নংঃ ২.১২ ( print() Once Again )

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

নিচের কয়েকটি স্টেটমেন্ট দেখি এবং বোঝার চেষ্টা করি ।

print(42)
a = 3.564
print("a = ", a)
print("a = \n", a)
print("a","b")
print("a","b",sep="")
print(192,168,178,42,sep=".")
Previous2.11 - Delete a VariableNext2.13 - print() basic format

Last updated 6 years ago