I know that this question will recieve some fairly strong comments but I'm going to post it anyway.
I'm working on a project in Python. My simple reasons for choosing Python are the available librtaries and it is cross platform and open source. My problem is that I really enjoy coding with the very verbose, descriptive method names of Objective C. The type of functions that I have to write can have fairly complex arguments and I find that with the Objective C approach I'm not having to constantly refer back to other pieces of dicumentation to make sure I'm using the right arguments with the right functions.
Is there any way of using the Objective C style for calling functions with Python? I am aware this probably doesn't suit recommended coding styles for Python, but it does suit what I am doing right now so I'd like to try and find a way of doing it if possible.