240 发简信
IP属地:安徽
  • Resize,w 360,h 240
    第五天 函数

    函数作用域:整个文件是全局作用域 函数里面是局部作用域 递归函数:一层一层的执行下去,一直到调用完为止 一:手机号判断 函数...

  • Resize,w 360,h 240
    第四天 字符串 转义 字典 集合

    字符串替换 st = 'this is python' st.replace('t','T') #更改 st.replace(...

  • Resize,w 360,h 240
    复习 列表 元组 字符串 编码 字典

    #数值类型 int float bool complex #序列类型 list[] tuple() str'' #散列类型 dict{'a':1...

  • 第三天 for循环 增删改查

    while循环适用于未知循环次数的循环,for循环适用于已知循环次数的循环 。 #whlie 循环 st = 'hello world' n =...

  • 第二天 if与else while循环

    weather = input('今天的天气咋样') if weather == 'rain': print('在家学习') elif we...

  • Resize,w 360,h 240
    第一天 print

    除(/),取余(%),取整(//) b=input('请输入您的年龄') a = 1 print(a,end='---') #end让print...