摘要: 点击查看代码 a,b = input().split() print(int(a)+int(b)) 点击查看代码 a, b = map(int, input().split()) print(a+b) 点击查看代码 a,b = map(lambda x:int(x),input().split()) 阅读全文
posted @ 2024-06-25 21:32 Lwr666 阅读(10) 评论(0) 推荐(0)
摘要: 点击查看代码 name = input() name1 = input() print(name,name1,end="") print("%s %s"%(name,name1)) print(f"{name} {name1}") print(name+" "+name1) print(name,n 阅读全文
posted @ 2024-06-25 21:22 Lwr666 阅读(12) 评论(0) 推荐(0)
摘要: ![](https://img2024.cnblogs.com/blog/3471443/202406/3471443-20240625160645987-324766181.png) 阅读全文
posted @ 2024-06-25 16:06 Lwr666 阅读(7) 评论(0) 推荐(0)
摘要: select '复旦大学' as university ; 添加固定列 阅读全文
posted @ 2024-06-25 16:00 Lwr666 阅读(8) 评论(0) 推荐(0)
摘要: select u.university,count(q.question_id)/count(distinct q.device_id) from user_profile u,question_practice_detail q where u.device_id=q.device_id grou 阅读全文
posted @ 2024-06-24 19:04 Lwr666 阅读(23) 评论(0) 推荐(0)