Posts by Gabriel • 3 points
1 post
-
0
votes1
answer103
viewsQ: Why in Python are there functions where the parameter should be placed between parentheses and others should be placed with a dot and the function name?
There are functions that should be written as for example sorted(variavel) and others are written as variavel.sort() I know the differences between the two functions above, I just used to exemplify.…