Computer Science, asked by khadeeja7015, 9 months ago

Python has certain functions that you can readily use without having to write any special code."" What type of functions are these ?

Answers

Answered by Sanramkar
6

Explanation:

some of the functions are:

print ()

if/elif/else

while

for

int/str/float

and many more

these do not need any special code to use these functions

hot this grow you and please mark it as the brainliest.

cheers:)

Answered by letmeanswer12
1

Python readily use without having to write any special code are called built-in functions.

Explanation:

  • Python has many readily available functions for use. Python interpreter has various predefined functions that are readily available for use. These functions we don't have to describe for use them; we can call them directly. Those functions are called built-in functions.
  • The built-in functions form part of the Python language. Built-in functions are predefined and supplied along with the compiler. They are also known as library functions.
  • The following are few built-in functions in Python dir(), len(),abs(), max(), str(), and open() etc.

Similar questions