Answer:
try putting "uk-" or "us-" depending on where you are, you could also go through your settings and try to allow everything.
Answer:
see attached
Vin -5V- +5V
Input current : 500 x 10^-6 A
V_r: 0V 5V
I_r: 1 mA
Explanation:
Step 1: Circuit Designing: you have to address the question what is your proposed circuit going to do (its function).
Step 2: Decide on circuit components that can address each such circuit functions.
Step 3: Decide on the operational specification for the circuit: voltages, currents, frequencies etc.
Step 4: Simulate your circuit to confirm if it works as expected with simulation software such as Multisim.
Mac os is based on the UNIX operating system.
Pseudocode:
import random
fetch user input on a lucky number
insert input into variable - "response"
new variable, random = randint
condition to check wheather random is our response
display results
Python Code:
import random
def main():
response = int(input("Guess my lucky number, its between 1 and 100: "))
lucky_number = random.randint(1,100)
if response == lucky_number:
print(f"Wow you're right, it is {lucky_number}")
else:
print("Sorry, Try Again")
main()
Reminder:
intended for python3 as i included the format f
also it could be done without the import, just manually insert a number
i'll leave the post mortum to you