会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
llx9
博客园
首页
新随笔
联系
订阅
管理
2023年11月19日
2023-11-19php三小时学习的作业(日更失败,今日继续)
摘要: 自律!!! <html> <head> <title>留言板--第一个php项目</title> <meta charset 'UTF-8' /> <style> .add,.list{width: 800px;magin:0 auto;} textarea{width: 100%;height:
阅读全文
posted @ 2023-11-19 17:39 https_L
阅读(6)
评论(0)
推荐(0)
2023年11月14日
2023-11-14python代码练习第二天
摘要: 序列类型的方法 # 1.解释如何使用Python的 append() 方法向列表中添加元素。 my_lst = [1, 2, 3, 6] my_lst.append(9) print(my_lst) # 2.写一个函数,接受一个列表作为参数,并返回该列表中元素的个数。 def count_eleme
阅读全文
posted @ 2023-11-14 15:06 https_L
阅读(21)
评论(0)
推荐(0)
2023-11-13Python代码练习第一天
摘要: 数值与序列类型 ''' 1.计算并返回斐波那契数列的第几项 # 封装函数 if条件判断语句 def fibonacci(n): if n <= 0: #如果n小于等于0,返回无 return None elif n == 1 or n == 2: # 如果n等于1或2,返回1 return 1 el
阅读全文
posted @ 2023-11-14 15:03 https_L
阅读(6)
评论(0)
推荐(0)
公告