Most of our clients are already competitively skilled when it comes to negotiation skills of buying and selling, however on the agency side, we are often way behind the mark and just starting to study and learn the same principle of pricing and negotiation This may be an old classic topic to us all, but as the words say, classics are the classics for a reason. There are 2 things we need to be very clear before moving into a negotiation: 1. Rejection is a good sign 2. Clients buy our value not costs
if 和 else if 条件 A: 条件 A 成立时(True)要执行的代码 Else 条件 A 不成立时(True)要执行的代码 范例: # 1. 接受用户输入的数 number = input("请输入一个整数: ") number = int(number) # 2. 判断这个数是不是偶数 if number % 2 == 0: print (f"ni输入的数是{number},它是一个偶数。) else: print (f"ni输入的数是{number},它是一个奇数。) print ("end") 透过缩进(tab)的方式来代表是不是包含在 if, else 语句里 if 和 else 不一定需要同时使用; if 可以单独使用 if 语句可以嵌套使用: 例: if number % 2 == 0: print (f"ni输入的数是{number},它是一个偶数。) if number % 3 == 0: print (f"这个数还能被 3 整除!") elif 及注意事项 if 语句中可以添加 elif (else if)处理额外的判断条件 elif 当第一个条件满足时,则不继续进行后续的判断 在 Python 中,空字符串,数字 0,NONE,空对象 在布尔值里均为 FALSE,其他则为默认为 TRUE