Python command line

The Python Interpreter command line You use this to write Python code directly into the command line Using the Python Interpreter Opening the command line Start > All Apps > Python 3.7 > Python 3.7 (64 bit) Closing the command line CTRL+Z or you can type “quit()”

Read More

.Modules general

“Modules “, “libraries” and “packages” are common terms for modules in python (a package is really a directory that holds a collection of modules). A module is a collection of Python declarations intended broadly to be used as a tool. Use a module in a file

Read More

Comma Separated Strings

Convert Comma Separated String To List Note, when you split a string on a character that it also ends with, you’ll end up with an empty string at the end of the list. Convert List into comma separated string

Read More