摘要:
''' int str bool list 存储大量的数据,用[]来表示 tuple 元组,不可以发生改变,用()来表示,和C++的元组是一样的 dict 字典,保存键值对,一样可以保持大量的数据,和C++的map一样 set 集合,内部数据不可以重复 ''' 字符串的任何操作都不会改变它本身,所以 阅读全文
摘要:
#幂次运算 ** mici = 1 while mici <= 9: print(2**mici,end=" ") #打印2的n次幂 mici += 1 #取整运算 // print("\n取整运算:5//3 = ",5//3) ''' 逻辑运算: 或:or 与:and 非:not 优先级问题: 有 阅读全文
摘要:
#格式化输出 year = input("今年是第几年:") month = input("现在是几月份:") day = input("今天是几号") print("%s年 %s月 %s号" %(year,month,day)) #百分号转义,第二次出现百分号且想打印出%就需要转义 a = 202 阅读全文
摘要:
#第一个案例==> while循环体 count = 1 while count <= 8 : print("这是第",count,"次") count = count + 1 #第二个案例==> break的使用 string = "" while True : s = input("输入你想输入 阅读全文
摘要:
money = input("输入你的钱数") money = int(money) #这是为了money转换成int类型,因为只要用过input函数获取的内容变量永远都是str类型 if money > 500: print("大吃大喝去") elif money > 300: print("吃水 阅读全文