PyQt and PySide are mostly identical. The major difference is the licensing. PyQt is GPL, and when selling an app, it requires a commercial license, where PySide has a LGPL license allowing you to sell your code without buying a license. Nice thing is, you can just switch the imports and sell it. :) PySide is also 2.x only, where PyQt is both.
PySide funding is ending as well.
"It's just that PySide seems to have a 'cleaner' syntax."
PyQt uses api 1 in 2.x (switchable to api 2 using sip.setapi(2, 'item')), and api 2 in 3.x. Switching to api 2 will have the same syntax as in PySide and PyQt in 3.x.
A nice article explaining differences between api 1 and api 2 can be found in PSEP 101.
"Since I know no Python, would people recommend Python 2 or 3?"
You're more likely to use Python 2 as very many modules and libraries haven't yet made the switch to Python 3, as it was an incompatible release against Python 2 (it's been 3 years since 2008 when Py3k came out!).
Just go with which one fits your best needs considering the circumstances. Some people like PyQt more because it's been around longer, is a more mature project, and is likely to be more stable because of that. Although, I've never really had any problems with PySide either, so it should be fine.