Total beginner here, so thanks for your patience. I'm trying to use Tweepy to read tweets from a text file and tweet them out. Pretty straightforward, but I want tweets from each line of the text file to have line breaks between them. For example, one tweet could look like this:
Part one of tweet
Part two of tweet
Part three of tweet
Again, the tweet is one line in the text file itself. I just want to break up some of the text in that line.
In the text file, I created the tweets by inserting two "\n" between these line breaks, but the "\n" characters are showing up in the tweets themselves. So how do I create these line breaks in my tweets? Many thanks for your help.