Answers for "python if nothing"

2

python do nothing

# To do nothing within a statement, use pass

good = True
if good:
  pass
else:
  print('This is not good')
Posted by: Guest on September-28-2020
0

python if null

noneObj = type(None)()
print(NoneObj)
// Check if NoneObj is instance of NoneType class
print(NoneObj is None)

//If-Else example
if (error is not None):
	result = error.decode()
else:
	result = "Hurray ^_^"

print(result)
Posted by: Guest on August-06-2021

Python Answers by Framework

Browse Popular Code Answers by Language