This is a draft cheat sheet. It is a work in progress and is not finished yet.
Claude Code
|
Initializes a new Claude.md file |
|
Specifies your prompt context |
|
Change Claude's mode |
|
Changes token allocation. Ascends from Think, Think More, Think a Lot, Think Longer, Ultra Think |
|
Summarizes the session, saving tokens |
|
Resets the conversation |
|
Sets a time based action loop |
|
Simplifies the context of a file. |
|
Makes changes to batches of files at the same time. |
|
|
Python Operations
|
Basic math operations |
|
Exponent |
|
Remainder |
|
Floor Division; divides and rounds down |
|
|
Finds the mean/avg of input |
|
Finds the mean of input and outputs as a float |
|
Finds the median of input |
|
Finds the mode of the input |
|
Value range between a and b |
|
Every c value between a and b |
|
A values from the end |
Python Lists
|
Creates list |
|
Adds value to the list |
|
Append, but can add multiple individual values |
|
Appends value at 'a' in the set |
|
Removes value from the list |
|
Removes value and tells you what value's value
is |
|
Removes ALL values from the list |
|
Duplicates the list |
|
Outputs the amount of times the value appears in the list |
list.index(value, a, b)
|
Outputs the earliest 'value' in the list between the range a-b |
|
Reverses the order of the list |
|
Sorts from least to greatest |
|