年与时迟,意与日去,遂成枯落,多不接世,悲守穷庐,将复何及!
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# 单行注释
'''
多行注释
多行注释
'''
"""
多行注释
多行注释
"""
# 多行语句,使用反斜杠(\)
a = 1
b = 2
c = 3
d = a + \
b + \
c
print(d)
# 在 [],{},() 的多行语句中,不需要使用反斜杠
total = ['zhutou1','zhutou2',
'zhutou3']
print(total)
"""
python 中数字有四种类型:int , float , bool , cpmplex
"""
"""
反斜杠是转义符,使用 r (raw)可以让反斜杠不转义
"""
print(" this is a line \n it is")
print(r"this is a line \n it is")
word = '字符串'
sentence = "这是一个句子"
paragraph = """
这是一个段落
有很多句子
"""
str = 'python'
print(str[0:-1])
print(str[0])
print(str[2:5]) # 输出从第三个到第五个字符
print(str[2:])
print(str * 2) # * 运算符重复
print(str + 'hello word') # + 运算符连接
input("按下 enter 键继续")
# 一行多语句
import sys; x = 'zhutou'; sys.stdout.write(x + '\n')
# print 默认输出之后是换行的,如果要不换行就添加 end=""
print("zhutou1", end="")
print("zhutou2")
"""
import module 整个模块导入
from module import function 从模块中导入某函数
from module import function_1,function_2 从模块中导入多个函数
from module import * 从某个模块中导入全部函数
"""
猪头
2020.3.20