Moja lekcja

 0    17 fiszek    jakitaki
ściągnij mp3 drukuj graj sprawdź się
 
Pytanie English Odpowiedź English
Install redis cli and server
rozpocznij naukę
sudo dnf install redis
initialize redis server
rozpocznij naukę
sudo systemctl start redis
start redis on boot
rozpocznij naukę
sudo systemctl enable redis
redis config file
rozpocznij naukę
sudo nano /etc/redis/redis. conf
list outdated python packages
rozpocznij naukę
pip list -o
update outdated packages in python
rozpocznij naukę
pip install --upgrade your_package
python command to write all necessary packages for the project to a file
rozpocznij naukę
pip freeze > requirements. txt
python command to install necessary packages from a file
rozpocznij naukę
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?
rozpocznij naukę
shift + shift
shortcut in pycharm to move code block up or down
rozpocznij naukę
left alt + up (or down arrow)
shortcut in pycharm to scroll
rozpocznij naukę
left ctrl + up) or down arrow)
shortcut in pycharm to go to definition/declaration
rozpocznij naukę
ctrl+B or ctrl+Click
shortcut in pycharm to extend/shrink code selection
rozpocznij naukę
ctrl+W/ctrl+shift+W
shortcut in pycharm to view recently opened files
rozpocznij naukę
ctrl+E
Which string method converts the first character of each string to upper case in python?
rozpocznij naukę
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.
rozpocznij naukę
type coercion
keyboard shortcut to format code in Intellij
rozpocznij naukę
ctrl+alt+L

Musisz się zalogować, by móc napisać komentarz.