2018-11-04

This is a test file

print("hello world") #注意到 print 是一个函数
print("This is a string")
str1='''
这是一段多行文字
第二行
第三行
'''
print(str1)

以上是字面常量:数字,字符串,字符串是可变的

格式化方法

age=29
name="Lemon"
print("{0} is {1}".format(name, age))

数字是可选,当数量可匹对

如果在Termial中执行

python3 /home/lemon/py/hello\ world.py

空格用转义执行"""

纸上得来终觉浅,绝知此事要躬行

print("{} is {}".format(name,age))

基于关键词输出

print("{person} is a {discription}".format(person="Lemon",discription="good guy"))
print("a",end="")
c="\t"
print(end="\t")
print("b",end="")
print(end="\n")
print(len(c))

2018年11月4日,简明Python教程,36页

你可能感兴趣的:(2018-11-04)