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)

相关文章
|
8月前
|
Python
python-print()函数
python中print()函数
46 1
|
2月前
|
Python
Python中的`range`函数与负增长
在Python中,`range`函数用于生成整数序列,支持正向和负向增长。本文详细介绍了如何使用`range`生成负增长的整数序列,并提供了多个实际应用示例,如反向遍历列表、生成倒计时和计算递减等差数列的和。通过这些示例,读者可以更好地掌握`range`函数的使用方法。
69 5
|
7月前
|
Python
python之print函数
python之print函数
|
数据挖掘 数据处理 Python
|
8月前
|
Python
Python中print()函数
4月更文挑战第3天,`print()` 是 Python 的内置函数,用于向标准输出(通常是命令行)打印信息。基本语法:`print(*objects, sep=' ', end='\n', file=sys.stdout, flush=False)`。参数包括:`objects`(必需,要打印的对象)、`sep`(默认空格,设置对象间分隔符)、`end`(默认换行,可自定义结束字符)和`file`(默认 stdout,可指定输出文件)。`flush=True` 可强制立即输出。示例展示了参数的不同用法。
109 3
Python中print()函数
|
8月前
|
存储 开发者 Python
Python2和Python3的range(100)的区别
【2月更文挑战第20天】
139 0
|
8月前
|
索引 Python
Python入门05 print函数
Python入门05 print函数
|
8月前
Python-set()
Python-set()
36 0
|
8月前
python-range()函数
python-range()函数
76 0
|
8月前
python-str()函数
python-str()函数
55 0