※Python学习第一天※

简单的输出hello,world!

 代码如下:

print('hello,world!')

import sys

print(sys.version_info)
print(sys.version)

print('hello, world!')
# print("你好,世界!")
print('你好', '世界')
print('hello', 'world', sep=', ', end='!')
print('goodbye, world', end='!\n')

我是花花,祝自己也祝您变强了~ 

猜你喜欢

转载自blog.csdn.net/m0_52711790/article/details/120944371