print(max(1,2,3,10))print(min(5,2,10))print(min('a', 'A', '0')) # works with characters, the order is (0-9, A-Z, a-z)print(max(1, 'a')) # can't compare theseround(3.712) # to the nearest integerround(3.712, 1) # can specify the number of decimal placeshelp(round) # works everywhere, including the command lineround? # Jupyter Notebook's additional syntax?round# same
Every function returns something, whether it is a variable or None:
result =print('example')print('result of print is', result) # what happened here? Answer: print returns None