欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Python study notes Day 1 ‘print‘

程序员文章站 2022-05-27 22:07:42
...

The first day to learn a new language named Python.

It's a widely used language in the world at the moment.

I'm going to be a junior, I gonna touch and master this kind of language.

The Day 1,I gonna learn how to output a string of code by using 'print'.

IN [1]    print("hello world")
OUT[1]    hello world

It's a single output. It's the simplest way to output something.

For example:

IN [2]    print("hello world")
          print("hello world")
          print("hello world")
OUT[2]    hello world
          hello world
          hello world

When we want to print more than one string of code, we can use multiple 'print' statements to do this.

Or, we can use the '\n' to do this:

IN [3]    print("hello world\n"
                "hello world\n"
                "hello world")
OUT[3]    hello world
          hello world
          hello world

When we use this method, we need to be careful that every line has double quotes.