Python__01--print()

简介: 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:

Untitled.png (2000×552) (amazonaws.com)

相关文章
|
6月前
|
Python
python-print()函数
python中print()函数
37 1
|
5月前
|
Python
python之print函数
python之print函数
|
6月前
|
Python
Python中print()函数
4月更文挑战第3天,`print()` 是 Python 的内置函数,用于向标准输出(通常是命令行)打印信息。基本语法:`print(*objects, sep=' ', end='\n', file=sys.stdout, flush=False)`。参数包括:`objects`(必需,要打印的对象)、`sep`(默认空格,设置对象间分隔符)、`end`(默认换行,可自定义结束字符)和`file`(默认 stdout,可指定输出文件)。`flush=True` 可强制立即输出。示例展示了参数的不同用法。
79 3
Python中print()函数
|
6月前
|
索引 Python
Python入门05 print函数
Python入门05 print函数
|
11月前
|
Shell PHP Python
Python(九)print函数的使用
Python 中的 print函数很重要,相当于PHP中的var_dump和echo 对我们编写代码调试是很重要的。 1:他可以输出所有 python 复制代码 # 输出字符串 print("guanchao.site") # 输出数字 print(100) # 输出变量 str = 'guanchao.site' print(str) # 输出列表 L = [1,2,'a'] print(L) # 输出元组 t = (1,2,'a') print(t) # 输出字典 d = {'a':1, 'b':2}
78 0
|
Python
Python输出函数print
Python输出函数print
51 0
|
存储 数据格式 Python
python(6).print()函数详解
python(6).print()函数详解
263 0
python(6).print()函数详解
|
缓存 Python
python print 函数详解
python print 函数详解
python print 函数详解
|
程序员 Python
笨办法学 Python--跟书练习七~更多打印
笨办法学 Python--跟书练习七~更多打印
119 0
笨办法学 Python--跟书练习七~更多打印
|
Python
python 3 基础:print()函数
print( ) 是python中最常用的输出方式
227 0
下一篇
无影云桌面