if( !(10 <= n && n <= 20) ){}
pythonで↑の条件作るにはどう記述すればいいですか?

if not 10 <= n and n <= 20 だと違う条件になるよね?