mirror of
https://github.com/LeCoupa/awesome-cheatsheets.git
synced 2026-01-28 22:28:02 -08:00
Compare commits
5 Commits
e03e93c93f
...
e7024849ab
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e7024849ab | ||
|
|
2aee46f169 | ||
|
|
22977d5ca1 | ||
|
|
a2c99c9674 | ||
|
|
0de5e8fef1 |
@@ -47,9 +47,10 @@ CTRL+X then ) # finish recording keyboard macro
|
||||
CTRL+X then E # recall last recorded keyboard macro
|
||||
CTRL+X then CTRL+E # invoke text editor (specified by $EDITOR) on current command line then execute resultes as shell commands
|
||||
CTRL+A then D # logout from screen but don't kill it, if any command exist, it will continue
|
||||
|
||||
BACKSPACE # deletes one character backward
|
||||
DELETE # deletes one character under cursor
|
||||
CTRL+T then Z # Minimizes the current session or sends the current session to the background.
|
||||
fg(foreground) # Maxmizes the current session
|
||||
BACKSPACE # deletes one character backward
|
||||
DELETE # deletes one character under cursor
|
||||
|
||||
history # shows command line history
|
||||
!! # repeats the last command
|
||||
|
||||
@@ -286,7 +286,7 @@ for(dataType item : array) {
|
||||
|
||||
### ACCESS MODIFIERS
|
||||
|
||||
1. defualt(No keyword required)
|
||||
1. default(No keyword required)
|
||||
2. private
|
||||
3. public
|
||||
4. protected
|
||||
|
||||
@@ -380,3 +380,14 @@ function_name()
|
||||
* We need not to specify the return type of the function.
|
||||
* Functions by default return `None`
|
||||
* We can return any datatype.
|
||||
### f strings
|
||||
* Short of "formatted string".
|
||||
* Allow us to to embed expressions inside string literals.
|
||||
* f-strings are denoted by "f" or "F" prefix before the string
|
||||
* Expressions are closed by curly braces '{}' with the f-string
|
||||
```
|
||||
name = "Alice"
|
||||
print(f"Hello, I am {name} and I am a programmer.")
|
||||
|
||||
```
|
||||
|
||||
|
||||
Reference in New Issue
Block a user