In programming language Python we can create functions, by writing before name of function "def". Why "def"? What's is meaning? Probably it is fool question, but I really don't know.
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (2)
the def keyword is used to create or "DEFINE" a function :)
w3schools.com/python/ref_keyword_d...
Got it. Thank you very much!