+ 1
Colorama Cursor + Input
Iâm using windows 7 and Python 3.7 I have a problem using colorama, specifically with Cursor when I use an Input. spam = float(Input(Cursor.POS(20,5) + âInsert floatâ)); Itâs printing in color but not in the position I asked for. Actually Iâm getting this: <-[5;20HInsert float Any help would be appreciated. https://code.sololearn.com/cifm57tMI4zG/?ref=app
1 Answer
0
I made it work using:
print(Cursor.(x,y) + âenter a valueâ, end = ââ);
variable = float(input())
if somone has a better idea please let me know.