Fionna
0
Q:

python if not

# Using "if not" is practically saying that, 'if this condition is false......'
a = False
if not a:
  print("a is False")
  
# IS SAME AS:

if a == False:
  print("a is False")
1
a = False
if not a:
  #Does this

a = True
if not a:
  #Doesn't do this
2
boolean = False

if not boolean: #Boolean is false.
  print("No")
else: #Boolean is True
  print("Yes")
0
a = False
if not a:
    yourFunction()
2
today = 'Sunday'

if not today=='Sunday':
	print('Go to work.')
else:
	print('Take rest.')
0

New to Communities?

Join the community