Como verificar se o número é negativo no python

num = -10

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