Python__01--print()

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python__01--print()相关的知识,希望对你有一定的参考价值。

1 打印输出print()

print() 函数用于打印输出,是python中最常见的一个内置函数

1.1 使用方式

  1. 可以输出数字

    print(520)
    
  2. 可以输出字符串

    print(helloworld)
    
  3. 含有运算符的表达式

    print(4+1)
    
  4. 将数据输出到文件盘符存在

    file=fp=open(D:/text.txt,a+)
    print(helloworld,file=fp)
    fp.close()
    
  5. 不进行换行输出

    print(helloooo,world)
    

1.2 测试

1.2.1 测试代码

print(520)
print(4+1)
fp=open(text.txt,a+)
print(helloworld,file=fp)
fp.close()
print(hellooooooooo,world)

1.2.2 测试结果

运行结果1: 运行结果2:

以上是关于Python__01--print()的主要内容,如果未能解决你的问题,请参考以下文章

python基础学习-装饰器基本原理

进程常用属性

python语言基础(使用type函数创建带有属性的类)

Python系统学习01print函数的用法

python 01 print input int

Python学习5——基本格式化输出