摘要:
JAVA采用“按值调用”,所有方法得到的仅仅是参数值的一个副本。 public class ParamTest { public static void main(String[] args) { System.out.println("\nTesting tripleSalary:"); var 阅读全文
摘要:
and 当俩个条件都满足时为True否为False or 任意一个条件满足时为True否为Flase not in 通常用于If语句,用来判断一个元素是否不在某个列表中 1 banned_user = ['andrew','carolina','david'] 2 user = 'marie' 3 阅读全文