Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
No, they're not the same. The first won't even work; an ordinary import statement imports modules only. The second will put MyClass.MyClass in your scope as MyClass.
The import <x> only allows you to import modules -- you can't do import <module>.<Class>. You can only import a specific class using the from <x> import <y> form.