240 发简信
IP属地:北京
  • Resize,w 360,h 240
    Dialogue between Jack and Rose

    [Rose is on top of a door in the water and Jack is hanging off the side,...

  • 沟通心理学中人的三种状态

    成年型 父母型 --命令型 儿童型适应性儿童--听话型自由性儿童--不听话型

  • Benjamin Button's Letter to Daughter

    原文 For what it's worth: It's never too late or, in my case, too early to...

  • Resize,w 360,h 240
    Everyone Has a Story in Life

    原文 A 24-year-old boy seeing out from the train's window shouted..."Dad,l...

  • Lesson9 random

    引入模块的方法: from 模块名 import 方法名 eg.from random import randintrandom是随机数模块,r...

  • Lesson8 while

    while也是一个控制流语句,也称为循环语句。 语法: 注意“:”与缩进。

  • Lesson7 if

    if被称为“控制流”语句,用来控制程序的执行顺序。if行的“:”不能省。下一行语句要缩进4处空格或一个Tab。 今天得到的教训:字符串外边一定要有‘’

  • Lesson6 bool

    常用的比较(关系)运算符包括: >:大于 <:小于 >=:大于等于 <=:小于等于 ==:等于。比较两个值是否相等。之所以用两个等号,是为了和变...

  • Lesson5 变量

    变量 变量的4种类型 字符串 -必须用''括起来 整数 浮点数 -小数 bool(布尔) -是用来表示逻辑“是”、“非”的一种类型,它只有两个值...