Answer:
Hello there!
The peak is the average, actually the RMS, times the sqrt(2).
80/sqrt(2) = 40sqrt(2)
=~ 56.57 volts
Hope it helps!
Local Area Network (LAN), Hope this helps
n = int(input("How many numbers do you need to check? "))
even = 0
odd = 0
for x in range(n):
num = int(input("Enter number: "))
if num % 2 == 0:
even += 1
print(str(num) + " is an even number.")
else:
odd += 1
print(str(num) + " is an odd number.")
print("You entered " + str(even) + " even number(s).")
print("You entered " + str(odd) + " odd number(s).")
This works for me. Best of luck.
Sort ascending would be the correct one, since you are going from the lowest value to the highest