I have just started learning python, I am a Java programmer. I think python is more simple than java. What I wanted to ask is, where is python used? And if python does not follow the complete OOP concepts, then can it be used to design large / major applications?
Few more question :
If I need to import a function from a module, I do module_name.function(), I guess this is correct.
Now if I have a class with name test which is in the module temp. Class test has a function func().
1) Can I call this function simply as module_name.function()
i.e
temp.func()
2) Or I have to call it like object_name.func()
i.e
t = test
t.func()
Any help will be great. Also, I am sorry if I have posted this is in wrong section.