0
Why we use oops in python rather than any function ?
4 Antworten
0
well, you can use functions, for ex:
func test()
print("Hello")
test()
0
sorry, def not func
0
got my languages mixed up
0
Python is a multi-paradigm programming language.
You can use OOP, functional, or imperative styles.
It depends on your preference and what's best for the problem you're trying to solve.