Как проверить, является ли число отрицательным в Python

num = -10

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