fork download
  1. def weatherSkill( city , date ):
  2. return f'我是您的AI小天气,查询到 city ,date 的天气为多云转晴。'
  3. changsha = weatherSkill( '长沙' , '2026-04-28' )
  4. beijing = weatherSkill ('北京', '2026-03-25')
  5. shanghai = weatherSkill('上海', '2026-03-26')
  6. print(changsha )
  7. print( beijing )
  8. print(shanghai)
Success #stdin #stdout 0.07s 14116KB
stdin
Standard input is empty
stdout
我是您的AI小天气,查询到	city	,date		的天气为多云转晴。
我是您的AI小天气,查询到	city	,date		的天气为多云转晴。
我是您的AI小天气,查询到	city	,date		的天气为多云转晴。