পাইথন প্রোগ্রামিং টিউটোরিয়াল সহায়িকা
  • পাইথন প্রোগ্রামিং টিউটোরিয়াল সহায়িকা
  • 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.09 - Object type, id, value

ভিডিও নংঃ ২.০৯ ( Object type, id, value )

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

নিচের কোডগুলো দেখুন এবং বোঝার চেষ্টা করুন ।

print(type(5))
print(id(5))
print(type(5/2))
print(id(5/2))
a = 5
print(type(a))
print(id(a))
b = a/2
print(type(b))
print(id(b))
Previous2.08 - KeywordsNext2.10 - help(), dir()

Last updated 6 years ago