How do I write the following in a single if statement:
开发者_JAVA技巧if x != 5:
if y < 4:
statement
if x != 5 and y < 4:
statement
How do I write the following in a single if statement:
开发者_JAVA技巧if x != 5:
if y < 4:
statement
if x != 5 and y < 4:
statement
精彩评论