• 技术文章 >常见问题 >Python常见问题

    python中井号怎么用

    silencementsilencement2019-11-18 11:12:26原创4892

    注释在编程中是很重要的部分。它能告诉你这段代码是干什么用的,或者用来删除一部分你暂时不需要执行的代码。下面演示的是如何在

    python中使用注释:

    # A comment, this is so you can read your program later.
    # Anything after the # is ignored by python.
    
    print "I could have code like this." # and the comment after is ignored
    
    # You can also use a comment to "disable" or comment out a piece of code:
    # print "This won't run."
    
    print "This will run."

    由上面可知,Python中的#是用来写注释的,而且一般是写单行注释。python学习网,免费的python学习网站,欢迎在线学习!

    专题推荐:注释
    上一篇:python的dict是什么类型 下一篇:python一定要安装在c盘吗

    相关文章推荐

    • django注释有什么作用• python中怎么给代码注释• python的代码怎么写注释

    全部评论我要评论

    © 2021 Python学习网 苏ICP备2021003149号-1

  • 取消发布评论
  • 

    Python学习网