Python Forum
Why built in functions are defined as class?
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Why built in functions are defined as class?
#3
look at it this way
abs is a class of type builtin_function_or_method, abs(14) is an instance of class abs with attribute 14
>>> type(abs)
<class 'builtin_function_or_method'>

>>>type(abs(14)) # returns type of instance of abs (which is of class int)
<class 'int'>
Reply


Messages In This Thread
RE: Why built in functions are defined as class? - by Larz60+ - Oct-05-2021, 02:42 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  "Name is not defined" when running a class lil_e 6 4,138 Jan-12-2023, 11:57 PM
Last Post: lil_e
  Calling functions from within a class: PYQT6 Anon_Brown 4 3,819 Dec-09-2021, 12:40 PM
Last Post: deanhystad
  Error when refering to class defined in 'main' in an imported module HeRo 2 2,431 Apr-13-2021, 07:22 PM
Last Post: HeRo
  Question about functions(built-in) Jinja2Exploitation 2 1,972 Nov-15-2020, 02:13 PM
Last Post: jefsummers
  should I ... go class or stick with functions? 3Pinter 4 2,122 Nov-14-2020, 10:40 AM
Last Post: 3Pinter
  Running scripts and location of saved interpreted user-defined classes and functions leodavinci1990 3 2,557 Aug-25-2020, 03:43 AM
Last Post: micseydel
  "Class already defined" while using typings. DreamingInsanity 0 2,356 Aug-19-2020, 10:43 AM
Last Post: DreamingInsanity
  python library not defined in user defined function johnEmScott 2 3,906 May-30-2020, 04:14 AM
Last Post: DT2000
  User defined functions inside other user defined functions WildP 1 1,962 Jan-29-2020, 04:57 PM
Last Post: Clunk_Head
  using class functions in roguelike game trousers1 3 2,597 Dec-02-2019, 08:22 PM
Last Post: ichabod801

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020