Moja lekcja

 0    17 Datenblatt    jakitaki
mp3 downloaden Drucken spielen überprüfen
 
Frage English Antworten English
Install redis cli and server
Lernen beginnen
sudo dnf install redis
initialize redis server
Lernen beginnen
sudo systemctl start redis
start redis on boot
Lernen beginnen
sudo systemctl enable redis
redis config file
Lernen beginnen
sudo nano /etc/redis/redis. conf
list outdated python packages
Lernen beginnen
pip list -o
update outdated packages in python
Lernen beginnen
pip install --upgrade your_package
python command to write all necessary packages for the project to a file
Lernen beginnen
pip freeze > requirements. txt
python command to install necessary packages from a file
Lernen beginnen
pip install -r requirements. txt
What shortcut will prompt a dialog in pycharm where you can find any command, setting, code construct, or a project file?
Lernen beginnen
shift + shift
shortcut in pycharm to move code block up or down
Lernen beginnen
left alt + up (or down arrow)
shortcut in pycharm to scroll
Lernen beginnen
left ctrl + up) or down arrow)
shortcut in pycharm to go to definition/declaration
Lernen beginnen
ctrl+B or ctrl+Click
shortcut in pycharm to extend/shrink code selection
Lernen beginnen
ctrl+W/ctrl+shift+W
shortcut in pycharm to view recently opened files
Lernen beginnen
ctrl+E
Which string method converts the first character of each string to upper case in python?
Lernen beginnen
title()
What do you call the automatic conversion of values from one data type to another, allowing two operands of different types to be combined in an expression.
Lernen beginnen
type coercion
keyboard shortcut to format code in Intellij
Lernen beginnen
ctrl+alt+L

Sie müssen eingeloggt sein, um einen Kommentar zu schreiben.