#单行注释
print('hello world!!') #注释
"""
多行注释
"""
[root@localhost mnt]# vim 01_hello.py
[root@localhost mnt]# python3.6 01_hello.py
hello world!!
hello world!!
#单行注释
print('hello world!!') #注释
"""
多行注释
"""
[root@localhost mnt]# vim 01_hello.py
[root@localhost mnt]# python3.6 01_hello.py
hello world!!
hello world!!