পাইথন প্রোগ্রামিং টিউটোরিয়াল সহায়িকা
  • পাইথন প্রোগ্রামিং টিউটোরিয়াল সহায়িকা
  • 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.10 - help(), dir()

ভিডিও নংঃ ২.১০ ( help(), dir() )

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

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

import keyword

print(dir(keyword))
print(help(keyword.kwlist))
Previous2.09 - Object type, id, valueNext2.11 - Delete a Variable

Last updated 6 years ago