摘要: #!/usr/bin/python3 # -*- coding: UTF-8 -*- # Fibonacci series: 斐波纳契数列 # 两个元素的总和确定了下一个数 a, b = 0, 1 while b < 10: print(b, end=',') a, b = b, a+b print 阅读全文
posted @ 2024-03-26 17:59 飞雪飘鸿 阅读(10) 评论(0) 推荐(0) 编辑
摘要: #!/usr/bin/python3 # -*- coding: UTF-8 -*- a=8 if a>7: print("大于") elif a<7: print("小于") 阅读全文
posted @ 2024-03-26 14:49 飞雪飘鸿 阅读(4) 评论(0) 推荐(0) 编辑
摘要: #!/usr/bin/python3 # -*- coding: UTF-8 -*- #注释 ''' 多行三点注释 ''' """ 多行注释 """ if True: print("true") else: print("false") a1=b1=c1=99 d,e,f=1,2,"myname" 阅读全文
posted @ 2024-03-26 14:45 飞雪飘鸿 阅读(34) 评论(0) 推荐(0) 编辑
https://damo.alibaba.com/ https://tianchi.aliyun.com/course?spm=5176.21206777.J_3941670930.5.87dc17c9BZNvLL