摘要: 阅读全文
posted @ 2021-07-04 15:47 myblogexecutive 阅读(23) 评论(0) 推荐(0) 编辑
摘要: # -*- coding: utf-8 -*- # def fibonacci(n): # a = 0 # b = 1 # nums = [] # for _ in range(n): # nums.append(a) # a,b = b,a+b # return nums # for i in f 阅读全文
posted @ 2021-07-04 11:05 myblogexecutive 阅读(34) 评论(0) 推荐(0) 编辑
摘要: # -*- coding: utf-8 -*-name = "Rose"country = "China"age = 28print(f"Hi,I'm {name}.I'm from {country},And I'm {age}")print(f"Hi,I'm {name}.I'm from {c 阅读全文
posted @ 2021-07-04 10:32 myblogexecutive 阅读(27) 评论(0) 推荐(0) 编辑