Difference between revisions of "Python:Functions"

From wiki
Jump to navigation Jump to search
(Created page with "List of all build in functions [https://docs.python.org/3/library/functions.html] ;len(obj1) :Return the number of elements in obj1 (string, list, tuple, set) ;max(obj1) :Re...")
 
m
Line 1: Line 1:
 +
[[category:Python]]
 
List of all build in functions [https://docs.python.org/3/library/functions.html]
 
List of all build in functions [https://docs.python.org/3/library/functions.html]
  

Revision as of 21:07, 21 January 2018

List of all build in functions [1]

len(obj1)
Return the number of elements in obj1 (string, list, tuple, set)
max(obj1)
Return the largest item in obj1
min(obj1)

Return the smallest item in obj1

input([prompt])
Read and return input from standard input. Display 'prompt' first when provided.