import time
import random
time.sleep(0.1) # Wait for USB to become ready
random.seed()
zufallzahl = random.random()
while True:
print("Hello, Pi Pico!", zufallzahl)
time.sleep(1)
import time
import random
time.sleep(0.1) # Wait for USB to become ready
random.seed()
zufallzahl = random.random()
while True:
print("Hello, Pi Pico!", zufallzahl)
time.sleep(1)