if statement - python. if var == False -


in python can write if statement follows

var = true if var:     print 'i\'m here' 

is there way opposite without ==, eg

var = false if !var:     print 'learnt stuff' 

use not

var = false if not var: print 'learnt stuff' 

Comments

Popular posts from this blog

php - mySql Join with 4 tables -

css - Text drops down with smaller window -

php - Satis Composer Repository Installation -