built-in func are valid/ invalid var name
Title
Question
Can built-in functions be used as valid variable names.
Python-3.4.3 Getting-started-with-Lists 03-04 min 0-10 sec
Answers:
They can be used as variable names. Python will not throw an error if you do
However, it is strictly advised NOT to do so, since in case you intend to use the built in function in your script after such an assignment, the function will not work as intended
Login to add comment