在Python中,print语句用于在控制台中打印输出。使用方法如下:
print("Hello, World!")
你可以将任意类型的数据作为参数传递给print函数,它会自动转换为字符串并在控制台中输出。例如:
print(42) # 输出:42 print("The answer is", 42) # 输出:The answer is 42