Moja lekcja

 0    17 schede    jakitaki
Scarica mp3 Stampa Gioca Testa il tuo livello
 
Domanda English Risposta English
Install redis cli and server
inizia ad imparare
sudo dnf install redis
initialize redis server
inizia ad imparare
sudo systemctl start redis
start redis on boot
inizia ad imparare
sudo systemctl enable redis
redis config file
inizia ad imparare
sudo nano /etc/redis/redis. conf
list outdated python packages
inizia ad imparare
pip list -o
update outdated packages in python
inizia ad imparare
pip install --upgrade your_package
python command to write all necessary packages for the project to a file
inizia ad imparare
pip freeze > requirements. txt
python command to install necessary packages from a file
inizia ad imparare
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?
inizia ad imparare
shift + shift
shortcut in pycharm to move code block up or down
inizia ad imparare
left alt + up (or down arrow)
shortcut in pycharm to scroll
inizia ad imparare
left ctrl + up) or down arrow)
shortcut in pycharm to go to definition/declaration
inizia ad imparare
ctrl+B or ctrl+Click
shortcut in pycharm to extend/shrink code selection
inizia ad imparare
ctrl+W/ctrl+shift+W
shortcut in pycharm to view recently opened files
inizia ad imparare
ctrl+E
Which string method converts the first character of each string to upper case in python?
inizia ad imparare
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.
inizia ad imparare
type coercion
keyboard shortcut to format code in Intellij
inizia ad imparare
ctrl+alt+L

Devi essere accedere per pubblicare un commento.