relative src and href paths work live but not local

I was making a new path for pages on my site and was trying to figure out how to path to my stylesheet and images cleanly. Here’s an element that shows my problem: <link rel="stylesheet" href="/src/styles.css"> My local copy of my site is hosted here at "E:/Documents/WEBSITE", the local page I’m trying to link the… Read More relative src and href paths work live but not local

How to generate a random number with the amount of digits, the user enters?

I’m making a small math program for practice purposes. The user is supposed to enter, how many digits the two summands should have. I did this as shown below: import random digits = int(input(“How many digits should the numbers have? “)) if digits == 1: while True: num1 = random.randint(0,9) num2 = random.randint(0,9) solution =… Read More How to generate a random number with the amount of digits, the user enters?