Python学习笔记--day02

二进制转十进制

numStr = input("请您输入一个数字:")
numInt = int(numStr,base=2)
print(numInt)
打印字符串

content = "0123456789"
index = 0
while index < len(content):
    item = content[index]
    print(item)
    index += 1
切片

name = "abcdef"
print(name[0:3])
print(name[0:5])
print(name[3:5])
print(name[2:])
print(name[1:-1])
print(name[:3])
print(name[0::2])
print(name[5:1:-1])
print(name[::-1])
结果:
abc
abcde
de
cdef
bcde
abc
ace
fedc
fedcba
字符串的四种表示方法

str1 = 'Hello World'
str2 = "Hello World"
str3 = '''Hello World ???'''
str4 = """Hello World !"""

首字母大写

str1 = "hello world"
str2 = str1.capitalize()
print(str2)

将字母小写

str1 = "Hello WORLD"
str2 = str1.casefold()
str3 = str1.lower()
print(str2)
print(str3)
查询子字符串在字符串中出现的次数

content = "helloworld"
count = content.count('o')
print(count)

content = "1234567890123456"
count = content.count("123",5,15)
print(count)

将字符串转bytes类型,或者bytes类型转字符串

str1 = "中"
data = str1.encode('utf8')
print(data)
print(type(data))

str2 = data.decode("utf8")
print(str2)
print(type(str2))

以……开始,以……结束

url = "www.baidu.com"
if not url.startswith("http"):
    url = "http://" + url
    print(url)

content = "www.baidu.com"
print(content.endswith('.com'))
find index的用法

# find查找子字符串在字符串中第一次出现的位置
content = "0123456798012345679"
index = content.find('123')
print(index)

index2 = content.find('123',10)
print(index2)

# 如果找不着对应的位置,则返回-1
index3 = content.find("abc")
print(index3)

index1 = content.index("123")
print(index1)

# 如果找不着对应的位置,则报错
# index = content.index("abc")
# print(index2)

if "abc" in content:
    index3 = content.index("abc")
    print(index3)
else:
    print("查无此数据")

index4 = content.find("abc")
if index4 == -1:
    print("查无此数据")
else:
    print(index4)
格式化字符串
price = 29.8534343
address = "南京"
content = "价格:{:.3f} 产地:{}".format(price,address)
print(content)

priceUnit = "500g"
content = "价格:{:.3f}/{} 产地:{}".format(price,priceUnit,address)
print(content)

content = "价格:{0:.3f}/{2} 产地:{1}".format(price,address,priceUnit)
print(content)
判断是否是十进制数字
num = input("请您输入一个数字:")
print(num.isdecimal())
判断是否是小写

print("abc".islower())
判断是否是大写

print("ABC".isupper())
将字符串转换为大写形式
print("abc".upper())
将字符串转换为小写形式

print("ABC".lower())
split使用字符串分割原来的字符串
content = "hello world ni hao a"
data = content.split(" ")
print(data)
print(type(data))
join将列表中的数据转换为字符串

data = ["this" ,"is","my","first","idea"]
content = "\t".join(data)
print(content)
获取网页上的图片

import requests
url = "http://www.baidu.com/img/bd_logo1.png"
response = requests.get(url)
data = response.content
names = url.split("/")
name = names[-1]
print(name)
with open(name,'wb') as f:
    f.write(data)
strip滤空
userName = input("请输入您的用户名:")
pwd = input("请输入您的密码:")
userName = userName.strip()
pwd = pwd.strip()
if userName == "lisi" and pwd == "123456":
    print("登录成功")
else:
    print("登录失败")
列表

# 列表定义格式
list1 = list()
print(list1)
list2 = []
print(list2)
list3 = [11,22,33,"lkdffksj"]
print(list3)
list4 = list(list3)
print(list4)

# 添加数据
list1 = [11,22,33,44]
list1.append(55)
print(list1)

# 追加多个数据
list1 = [11,22,33,44]
list2 = [55,66,77,88,99]
list1.extend(list2)
print(list1)
print(list2)

# 指定的位置添加指定的元素
list1 = [11,22,33,44,55]
list1.insert(2,66)
print(list1)

# 清空数据
list1 = [11,22,33,44]
list1.clear()
print(list1)

# 删除指定下表的数据
list1 = [00,11,22,33,44,55]
removedItem = list1.pop()
print(removedItem)
print(list1)

removedItem = list1.pop(1)
print(removedItem)
print(list1)










  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值