python 第一课 helloworld
Posted 龙桑
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 第一课 helloworld相关的知识,希望对你有一定的参考价值。
#!/usr/bin/env python #-*-coding:utf-8-*- #以上是配置编写环境的开始 #第一行env表示运行当前环境变量内的python版本(2.x or 3.x) #第二行表示编码格式是utf-8支持中文注释或者字符串中文输出(3.x以上默认支持) print\'hello world\' #第一个简易代码打印hello world print(\'hello one\') #在python3.x以上打印语句要加()表示 和java等一些语言类似 print\'hello\\ntwo\' #在打印中加入\\n代表换行,和你在文本txt输入时Enter回车一下类似。 print(\'hello\\tthree\') #在打印中\\t表示分割字符串,类似中间加tab或空格间距。 print\'\\"\' #打印特殊字符反引号"时要加入反斜杠\\来告诉编译器识别 print"\\\\" #同上同理 print""" What\'s your name My name is Cookie Tanks Watching """
本文主要讲 python2和python使用helloworld的不同,及分隔符简单介绍。
结果输出如下:
以上是关于python 第一课 helloworld的主要内容,如果未能解决你的问题,请参考以下文章