Moja lekcja

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

Debes iniciar sesión para poder comentar.