用Python,使用两种方法实现打印hello,Python

用Python,使用两种方法实现打印hello,Python

方法一:`

Py=‘hello,Python’

print(Py)

方法二:

Py1=‘hello’

Py2=’,’

Py3=‘Python’

print(Py1+Py2+Py3)

猜你喜欢

转载自blog.csdn.net/m0_45906029/article/details/110295090