python入门

level0:

0

代码:

1
2
3
#coding=utf-8

print("hallo world!")

level1:

1

代码:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#coding=utf-8
#1-剪刀;2-石头;3-布
import random
count_pc=0
count_per=0
while count_per<3 and count_pc<3:
pc=random.randint(1,3)
per=int(input("输入选择:1-剪刀;2-石头;3-布"))
if per==1 and pc==1:
print("平")
elif per==1 and pc==2:
print("you lose")
count_pc=count_pc+1
elif per==1 and pc==3:
print("you win")
count_per=count_per+1
elif per==2 and pc==1:
print("you win")
count_per=count_per+1
elif per==2 and pc==2:
print("平局")
elif per==2 and pc==3:
print("you lose")
count_pc=count_pc+1
elif per==3 and pc==1:
print("you lose")
count_pc=count_pc+1
elif per==3 and pc==2:
print("you win")
count_per=count_per+1
elif per==3 and pc==3:
print("平局")
if count_pc==3:
print("总比分为{}:{},你输了".format(count_pc,count_per))
elif count_per==3:
print("总比分为{}:{},你赢了了".format(count_pc,count_per))

想不出来有啥其他算法简化了,就用最傻逼的elif好了

level2:

2

代码:

mod:

1
2
3
#coding=utf-8
def beautiful(x):
print("{} is beautiful".format(x))

main:

1
2
3
#coding=utf-8
from mod import beautiful
beautiful("python")

level3:

3

代码:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#coding=utf-8
import requests,re

def del_join(del_content,list_content):
for i in list_content:
list=re.split(del_content,i)
str=""
print("{}\t".format(str.join(list)),end="")

url="https://www.tianqi.com/chongqing/7/"
headers={
"user-agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.52"
}
html=requests.get(url,headers=headers).text

temp_ch=re.compile(r'<div class="weaul_z"><span>(.*?)</div>')
date_ch=re.compile(r'<span class="fl">(.*?)</span>')
week_ch=re.compile(r'<span class="fr">(.*?)</span>')

temp=temp_ch.findall(html)
date=date_ch.findall(html)
week=week_ch.findall(html)

for i in date:
print("{}\t".format(i),end="")
print("\n")
for i in week:
print("{}\t".format(i),end="")
print("\n")
del_join("<span>|</span>",temp)

用requests和re模块,本来想用beautifulsoup,但爬出来会有乱码,放弃了

re具体的筛选就用温度、日期前边的div类型,然后出来的是个list

只有温度中间有其他的字符,就定义一个”del_join”函数,把温度中间的span和/span删掉再拼接起来就好了

level4:

搭建novelai,显卡1066,搭了也没啥用,懒得搭了

  • Copyrights © 2022-2024 b1xcy