s = eval(input("请输入"))
t = "*" if s%3 == 0 and s%5 == 0 else "不"
print("{}这个数字".format(t))
等价于
s = eval(input("请输入"))
t = "*"
if s%3 == 0 and s%5 == 0 :
print("{}这个数字".format(t))
else :
"不"
s = eval(input("请输入"))
t = "*" if s%3 == 0 and s%5 == 0 else "不"
print("{}这个数字".format(t))
等价于
s = eval(input("请输入"))
t = "*"
if s%3 == 0 and s%5 == 0 :
print("{}这个数字".format(t))
else :
"不"