自学Python笔记 Day 19: Lesson 3

Day 19

Lesson 3

开发环境

  • 现在我们学的都是比较基本的语句 所以可以直接在终端中以交互式的方法运行 具体的只要打开终端 输入python3 就可以了
  • 输入完语句按回车执行

输出

  • 单行:print( "Hello World!" )
  • 多行:
    print("""
    Hello
    World!
    """)
    

变量

  • a = 10
  • a = 'Hello World!'
  • a = True

输入

  • 普通输入:a = input()
  • 带文字输入:a = input("a is :")

字符串

  • 输出’:\'
  • 输出回车:\n
  • 计数从0开始!
  • 保留两位小数:print("{:.2f}" format(3.1415926))

注释

  • #号表示
  •   #hahaha
      print("Hello World") #hahaha
    

运算符

自学Python笔记 Day 19: Lesson 3_第1张图片

比较运算符

自学Python笔记 Day 19: Lesson 3_第2张图片

赋值运算符

自学Python笔记 Day 19: Lesson 3_第3张图片

逻辑运算符

自学Python笔记 Day 19: Lesson 3_第4张图片

好啦 这一课好长 今天就到这里啦
Au revoir~

你可能感兴趣的:(自学Python笔记,python)