I am trying to make a guess the number game in python.
print("I am thinking of a number between" + lowerboundnumber +" and" +greaterboundnumber)
lowerboundnumber = random.randint(1, 50)
greaterboundnumber = random.randit(51, 100)
How can I use my variables, lowerboundnumber and greaterboundnumber in a print function, without adding them? Sorry what I am trying to ask makes no sense. But any type of help would do