This commit is contained in:
Tayyab
2024-06-13 11:27:00 +00:00
committed by GitHub
2 changed files with 15 additions and 3 deletions

View File

@@ -47,7 +47,8 @@ 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
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

View File

@@ -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.")
```