3. Python基础学习笔记——第一个Python程序

第一个Python程序

  • 非常简单:

    100+200
    300

    3. Python基础学习笔记——第一个Python程序_第1张图片

  • 应当结合代码编辑器以及Python的交互解释器来编写代码,可以一边写一边验证。非常高效率的。

输入和输出

输出

  • 输出单个字符串:

    >>> print('This is a string line')
    This is a string line
  • 接受多个字符串:

    >>> print('The quik brown fox', 'jumps over', 'the lazy dog')
    The quik brown fox jumps over the lazy dog
  • 直接打印计算结果等:

    >>> print('100+100 = ', 100+100)
    100+100 =  200

输入

  • 使用内置函数input()实现输入,将输入的字符串存放在一个变量中。
  • input()可以接收一个字符串来提示用户:

    >>> name = input('Please input your name')
    Please input your name Kangkang

你可能感兴趣的:(3. Python基础学习笔记——第一个Python程序)