1x = 1 > 0 # (True/False)
2print(x)
3#------------------------------------------
4
5if (1 > 0): x = "something" # put any value
6print(x)
1>>> myList = []
2>>> False and myList.append('myString')
3False
4>>> myList
5[]
6>>> True and myList.append('myString')
7>>> myList
8['myString']
9