So überprüfen Sie, ob die Zahl in Python negativ ist

num = -10

if num < 0:
  print(f"number you entered:{num} is negative")
Donald Duck