学习python简单语法

学习示例
http://localhost:8888/notebooks/python.study.ipynb

字符类型

  • 字符串 str
  • 数字 int/float
  • 列表 list
  • 元组 tuple
  • 字典 dict

import this
#选中行,按l显示行号
number = 10
number += 10
print(number)

import math
#乘方
math.pow(3,10)
#乘方 另一种写法
3 ** 10
#字符串拼接
str = "st"+"ring"
print(str)
#字符串乘法运算
print(str*3)#输出stringstringstring

#交换变量
a = 10
b = 20
a, b = b, a
#输出格式
print("a is {},b is {}".format(a,b))
#字符串不可变类型的变量
line = "ni hao"
#返回字符串长度
len(line)
#返回身份识别符,可理解为内存地址
id(line)
#字符串截取
line = "hello word"
line[:5]
#每隔一个字符取一次
step = line[0:10:2]
#翻转字符
fanzhuan = line[::-1]
print(fanzhuan)
#获取单字符
line[0]
#函数用法描述(加一个问号)---首字母大写,其余字母小写
line.capitalize?
line.capitalize()

你可能感兴趣的:(学习python简单语法)