如何 return 布尔值并在 python 中打印消息
How to return a boolean value and print a message in python
例如,我想return一个布尔值False,同时在python中打印一条消息("It did not pass the test"),如何实现?
你在找这个吗?
def this_returns_false(<arguments>):
"""
Do stuff here
"""
return False
if not this_returns_false(<args>): # not accesses the function for False statement now
print "It did not pass the test"
一个可能的 shorthand:
print "It did not pass the test" if not this_returns_false else ""
OP 代码:
def password_check(password):
upper_letter = str.upper(lower_letter)
if ((count_digit(password) == 0) or (count_Lletter(password) == 0) or (count_Uletter(password) == 0)):
return False and print("it did not pass the test")
在OP代码后编辑:
def password_check(password):
upper_letter = str.upper(lower_letter)
if (not count_digit(password)) or (not count_Lletter(password)) or (not count_Uletter(password)):
# not is the same as !
print("it did not pass the test")
return False
顺便说一句,print
语句在return语句之前执行。
例如,我想return一个布尔值False,同时在python中打印一条消息("It did not pass the test"),如何实现?
你在找这个吗?
def this_returns_false(<arguments>):
"""
Do stuff here
"""
return False
if not this_returns_false(<args>): # not accesses the function for False statement now
print "It did not pass the test"
一个可能的 shorthand:
print "It did not pass the test" if not this_returns_false else ""
OP 代码:
def password_check(password):
upper_letter = str.upper(lower_letter)
if ((count_digit(password) == 0) or (count_Lletter(password) == 0) or (count_Uletter(password) == 0)):
return False and print("it did not pass the test")
在OP代码后编辑:
def password_check(password):
upper_letter = str.upper(lower_letter)
if (not count_digit(password)) or (not count_Lletter(password)) or (not count_Uletter(password)):
# not is the same as !
print("it did not pass the test")
return False
顺便说一句,print
语句在return语句之前执行。