So I am new to coding, so I'm doing Python but I'm having this issue. (BTW sorry if I don't know the names for this stuff :3) So you know when you print and you put commas to have words and variables? Well I'm doing that and its putting spaces in between. Here's my code.
import time
import random
print("Dice rolling simulator!")
time.sleep(1.5)
a = int(input("Enter your first number: "))
b = int(input("Enter your second number: "))
print("Rolling..")
time.sleep(1)
print ("You rolled a",random.randint(a, b),"!")
Its printing "You rolled a (blank) !" Its putting a space between the number and the exclamation point. Please help!