Python3简单的输入输出及内置函数查看
Python3是一种高级编程语言,其语法简单易懂,入门门槛低,且广泛应用于各种领域的开发。在Python3中,处理数据进出大多以输入输出(I/O)和内置函数为核心。因此,本篇文章将会介绍Python3中简单的输入输出及内置函数查看。
输入输出
Python3中,有以下几种基本的输入输出方式:
1. 输出
输出是将结果打印在控制台上,并传达给用户看的方式。Python3中,可以直接使用print()
函数输出字符串,也可以将多个元素作为参数传递给print()
函数。示例代码如下:
print("Hello World")
x = 3.14
y = "Python3"
print("The value of x is", x, "and y is", y)
输出结果如下:
Hello World
The value of x is 3.14 and y is Python3
2. 输入
输入是从用户处收集数据的方式。Python3中,可以使用input()
函数从控制台上获取用户输入的值。示例代码如下:
name = input("Please enter your name: ")
输入结果如下:
Please enter your name: Alex
内置函数查看
在Python3中,有很多内置函数可以使用,如abs()
、len()
等等。内置函数是Python解释器提供的函数,可以直接使用。接下来,我们将介绍如何查看内置函数及其用法。
1. 查看内置函数列表
可以使用dir(__builtins__)
函数来查看Python3中所有的内置函数列表。示例代码如下:
print(dir(__builtins__))
输出结果如下:
['ArithmeticError', 'AssertionError', 'AttributeError', 'BaseException', 'BlockingIOError', 'BrokenPipeError', 'BufferError', 'BytesWarning', 'ChildProcessError', 'ConnectionAbortedError', 'ConnectionError', 'ConnectionRefusedError', 'ConnectionResetError', 'DeprecationWarning', 'EOFError', 'Ellipsis', 'EnvironmentError', 'Exception', 'False', 'FileExistsError', 'FileNotFoundError', 'FloatingPointError', 'FutureWarning', 'GeneratorExit', 'IOError', 'ImportError', 'ImportWarning', 'IndentationError', 'IndexError', 'InterruptedError', 'IsADirectoryError', 'KeyError', 'KeyboardInterrupt', 'LookupError', 'MemoryError', 'NameError', 'None', 'NotADirectoryError', 'NotImplemented', 'NotImplementedError', 'OSError', 'OverflowError', 'PendingDeprecationWarning', 'PermissionError', 'ProcessLookupError', 'RecursionError', 'ReferenceError', 'ResourceWarning', 'RuntimeError', 'RuntimeWarning', 'StopAsyncIteration', 'StopIteration', 'SyntaxError', 'SyntaxWarning', 'SystemError', 'SystemExit', 'TabError', 'TimeoutError', 'True', 'TypeError', 'UnboundLocalError', 'UnicodeDecodeError', 'UnicodeEncodeError', 'UnicodeError', 'UnicodeTranslateError', 'UnicodeWarning', 'UserWarning', 'ValueError', 'Warning', 'WindowsError', 'ZeroDivisionError', '_', '__build_class__', '__debug__', '__doc__', '__import__', '__loader__', '__name__', '__package__', '__spec__', 'abs', 'all', 'any', 'ascii', 'bin', 'bool', 'breakpoint', 'bytearray', 'bytes', 'callable', 'chr', 'classmethod', 'compile', 'complex', 'copyright', 'credits', 'delattr', 'dict', 'dir', 'divmod', 'enumerate', 'eval', 'exec', 'exit', 'filter', 'float', 'format', 'frozenset', 'getattr', 'globals', 'hasattr', 'hash', 'help', 'hex', 'id', 'input', 'int', 'isinstance', 'issubclass', 'iter', 'len', 'license', 'list', 'locals', 'map', 'max', 'memoryview', 'min', 'next', 'object', 'oct', 'open', 'ord', 'pow', 'print', 'property', 'quit', 'range', 'repr', 'reversed', 'round', 'set', 'setattr', 'slice', 'sorted', 'staticmethod', 'str', 'sum', 'super', 'tuple', 'type', 'vars', 'zip']
2. 查看内置函数用法
可以使用help()
函数来查看Python3中内置函数的用法,如print()
函数。示例代码如下:
print(help(print))
输出结果如下:
Help on built-in function print in module builtins:
print(...)
print(value, ..., sep=' ', end='\n', file=sys.stdout, flush=False)
Prints the values to a stream, or to sys.stdout by default.
Optional keyword arguments:
file: a file-like object (stream); defaults to the current sys.stdout.
sep: string inserted between values, default a space.
end: string appended after the last value, default a newline.
flush: whether to forcibly flush the stream.
None
总结
在本篇文章中,我们介绍了Python3中简单的输入输出及内置函数查看。通过本文的介绍,你现在应该了解Python3中的基本输入输出方式和内置函数列表的查看方法。掌握这些技能是Python3编程的重要一步,我们也希望可以帮助你更好地理解和应用Python3编程语言。
本站文章如无特殊说明,均为本站原创,如若转载,请注明出处:Python3简单的输入输出及内置函数查看 - Python技术站