Skip to content Skip to sidebar Skip to footer

Function With Input Prints Out Nothing

Ok so I'm trying to get z.ExNote() to print out an image (of an 8th note) onto a page of sheet music for an app I'm building. Basically every variable just has to do with the (x,y)

Solution 1:

Are you using Python 2 or 3. If you use Python 2, input() tries to evaluate the expression you type. raw_input() which I believe you want here returns the string.


Post a Comment for "Function With Input Prints Out Nothing"