I just started learning Python and I want to convert one of my codes to this language. I have a little problem what I can't solve. My script have to make random numbers and printing them after another without adding them together.
time = random.randint(1000000000,9999999999)
no_hash = time+random.randint(1,100)+random.randint(1,10000)+random.randint(1,10000000)
Example output 4245200583 but I need just like this: 423694030332415251234. As you see the code adding the numbers together (because of + between them) but I don't want to add the numbers together just print them.