Moja lekcja

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

You must sign in to write a comment