I wrote a really short program but I hate having so many repetitive print calls that makes it seem as if a two year old coded my program.
userInput %= 6
print (userInput)
userInput += userInput
print (userInput)
userInput -= 4
print (userInput)
userInput += 1
print (userInput)
userInput *= 9.857143
print (userInput)
userInput = str(userInput)
print ("<" + userInput + ">")
you can see how repetitive and ugly it is, I tried searching up and tried several things but they dont really work with what Im trying to do here.