网上学习资料一大堆,但如果学到的知识不成体系,遇到问题时只是浅尝辄止,不再深入研究,那么很难做到真正的技术提升。
一个人可以走的很快,但一群人才能走的更远!不论你是正从事IT行业的老鸟或是对IT行业感兴趣的新人,都欢迎加入我们的的圈子(技术交流、学习资源、职场吐槽、大厂内推、面试辅导),让我们一起学习成长!
目录
(1)闰年判断
伪代码:
year = (int(input()))
if (year % 100 == 0 and year % 400 == 0) or (year % 100 != 0 and year % 4 == 0):
print("year是闰年")
else:
print("year不是闰年")
tip2:👉🔗http://t.csdnimg.cn/G1ZQ8
(2)判断大小
#if- else 法:
a,b = map(int,input().split())
if a > b:
max_value = a
else:
max_value = b
print(max_value)
#三元换算法: 等价于 原始是a 如果 a > b 就是b
max_value = a if a > b else b
print(max_value)
Match 语句:
status = int(input())
match status:
case 400:
print("Bad request")
case 404:
print("Not found")
case 418 | 420 | 422 | 400: #| 表示或
print("I'm a teapot")
case _: #_ 表示方法
print("Something's wrong with the internet")
1.字符串中想表示%时,需要写成 %%.
2.Python 中交换两个变量, 可以用: a,b = b,a.
(3)零食
写法1:
#零食
x,y = map(int,input().split())
if x == 1:
print("Total: R$ %.2f"%(y * 4))
elif x == 2:
print("Total: R$ %.2f"%(y * 4.5))
elif x == 3:
print("Total: R$ %.2f"%(y * 5))
elif x == 4:
print("Total: R$ %.2f"%(y * 2))
elif x == 5:
print("Total: R$ %.2f"%(y * 1.5))
写法2:
#写法2:
x,y = map (int,input().split())
if x == 1:
p = 4
elif x == 2:
p = 4.5
elif x == 3:
p = 5
elif x == 4:
p = 2
![img](https://img-blog.csdnimg.cn/img_convert/e622ee5a0a052f8ff860f257523cb7c0.png)
![img](https://img-blog.csdnimg.cn/img_convert/ac9ce6af243258f4a4f726a597104428.png)
**网上学习资料一大堆,但如果学到的知识不成体系,遇到问题时只是浅尝辄止,不再深入研究,那么很难做到真正的技术提升。**
**[需要这份系统化的资料的朋友,可以戳这里获取](https://bbs.csdn.net/topics/618636735)**
**一个人可以走的很快,但一群人才能走的更远!不论你是正从事IT行业的老鸟或是对IT行业感兴趣的新人,都欢迎加入我们的的圈子(技术交流、学习资源、职场吐槽、大厂内推、面试辅导),让我们一起学习成长!**
朋友,可以戳这里获取](https://bbs.csdn.net/topics/618636735)**
**一个人可以走的很快,但一群人才能走的更远!不论你是正从事IT行业的老鸟或是对IT行业感兴趣的新人,都欢迎加入我们的的圈子(技术交流、学习资源、职场吐槽、大厂内推、面试辅导),让我们一起学习成长!**