.items() returns an iterator, so you can just call next() to get the first element:
status = next(tweepy.Cursor(api.user_timeline).items())
This can throw StopIteration if there are no elements at all. You can add a default value to next() to prevent the following:
status = next(tweepy.Cursor(api.user_timeline).items(), None)
source share