Python教程

输出python第一个程序--hello world

本文主要是介绍输出python第一个程序--hello world,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

这里要用到python的内置输出函数 print()

我们只需在print()里面写入hello world就好,同时hello world需要用英文单引号或英文双引号引起来

print('hello world')

或者

print("hello world")

 

这篇关于输出python第一个程序--hello world的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!