How to make a dictionary: names = { “name”: “James”, “name:, “Barry”, “name:, “Sarah”, “name”, “Amanda” } Looping over these elements, keys they are called. peoples = { “name”: “James”, “name:, “Barry”, “name:, “Sarah”, “name”, “Amanda” } for keys in people: print peoples[keys] How to divide in python a = [0, 1, 2, 3, 4, […]
Node.js is a JavaScript runtime built on Chrome’s V8 JavaScript engine. Node.js uses an event-driven, non-blocking I/O model that makes it lightweight and efficient. Node.js’ package ecosystem, npm, is the largest ecosystem of open source libraries in the world. In this article we will explain the steps of installing node.js and npm in CentOS. Step […]
[vc_row][vc_column][vc_masonry_grid post_type=”post” max_items=”10″ style=”lazy” show_filter=”yes” element_width=”12″ gap=”5″ grid_id=”vc_gid:1515929494134-bdc9d7633c58daa5d683e697deae3c16-7″ taxonomies=”14″ filter_source=”category”][/vc_column][/vc_row]
Installing via yum You will need the Centos EPEL to do this. # yum install epel-release -y # yum install python-pip -y Installing with wget method # curl “https://bootstrap.pypa.io/get-pip.py” -o “get-pip.py” sudo python get-pip.py