Python如果有两件事是真的,我想打印一件事。另一个如果是假的话

时间:2017-06-01 07:19:50

标签: python

只是在努力学习东西 做了这个愚蠢的计划。只是想要tp和袜子都是真的让你能够得到if的东西。或者idk。

def shit_supplies(tp, socks, time):
    print "Time: %d minutes" % time
    print "Soks on? %r" % socks
    print "Butt-Wipies? %r" % tp
if tp socks == "true":
    print "Hurry up only %d minutes to pinch it off!!@!" % time
else:
    print "No poopies for you!"

尝试了一些像逗号这样的东西让它起作用,但我迷失了,无法在谷歌上找到它。

1 个答案:

答案 0 :(得分:3)

你的尝试中只有一些小错误。

 def poop_supplies(tp, socks, time):
        print("Time: %d minutes" % time)
        print("Soks on? %r" % socks)
        print("Bottom-Wipies? %r" % tp)
        if tp and socks:
            print("Hurry up only %d minutes to pinch it off!!!" % time)
        else:
            print("No poopies for you!")

Here是关于布尔运算符的一个很好的小教程。