要使用import命令读取文件,首先需要打开文件并将其内容加载到Python脚本中。以下是一个示例代码,演示如何使用import命令读取文件内容:
# myfile.py def print_hello(): print("Hello from myfile.py")
# main.py import myfile myfile.print_hello()
通过上述步骤,可以使用import命令读取其他Python文件中的内容并在当前脚本中使用。