with one click
with one click
城市信息
Python-based data analysis tools using pandas and numpy for data processing and visualization.
Automatically generate a comprehensive travel plan based on user's travel needs (destination, date, budget, etc.), including transportation, accommodation, attractions, food, and itinerary. Use when a user asks for a travel plan, itinerary, travel tips, or mentions a specific destination.
Simple shell utilities for files and archives.
Weather information query tools including current weather, forecast, and location search.
Generate concise research bullet points for the team leader.
| name | python-math |
| description | Small Python utilities for math and text files. |
Overview
Run short Python scripts inside the skill workspace. Results can be returned as text and saved as output files.
Examples
Print the first N Fibonacci numbers
Command:
python3 scripts/fib.py 10 > out/fib.txt
Sum a list of integers
Command:
python3 - <<'PY' from sys import stdin nums = [int(x) for x in stdin.read().split()] print(sum(nums)) PY
Output Files