0

I'm new to the Python world and I need a little help.

I want to create an application that displays a text message, and I need this text to have animation like fade in, text sweep, etc.

I was wondering if you guys can recommend me a couple of libraries or some code examples to achive this.

Thanks a lot

Edit 1: I Want to do this in a Window im Using Tkinter

Mitch3091
  • 4,292
  • 3
  • 17
  • 23
  • Do you want to do this in the console? That's going to be hard... But if it's not the case, you can have a look at PyGame or Tkinter – math2001 Feb 08 '17 at 05:13
  • No, I want to do this in a Window with Tkinter I know how to use the tkinter widgets, you have mentioned PyGame I gonna read about that. – Mitch3091 Feb 08 '17 at 05:38
  • Oh... I've never really used Tkinter before. Maybe have a look [here](http://stackoverflow.com/questions/23319059/embedding-a-pygame-window-into-a-tkinter-or-wxpython-frame) to use both of them – math2001 Feb 08 '17 at 05:40
  • "I want animation effects" is too vague. The answer really depends on which effects you specifically want. For example, tkinter supports fading text in and out, and moving it across the screen, but it doesn't support effects like flipping the text, bursting into confetti, etc. Your first step should be to work through a Tkinter tutorial and/or experiment with the widgets that support text, and then come back and ask a more specific question. – Bryan Oakley Feb 10 '17 at 14:14