HAPPY NEW YEAR
===================================
Finally, final day came
===================================
- Bugs: bad habits/things
HAPPY NEW YEAR
===================================
Finally, final day came
===================================
> Object.prototype.toString.call(a)
'[object Array]'
>
> Object.prototype.toString.call(a).slice(8, -1)
'Array'
>
> Object.prototype.toString.call(a).slice(8, -1);
'Array'
>
// Entry point of the application | |
// https://github.com/nwjs/nw.js/issues/6308 | |
nw.Window.open('./src/views/index.html', { | |
position: 'center', | |
width: 1000, | |
height: 600, | |
frame: true | |
}, function(win) { | |
// log the width / height = 1366 / 768 | |
if(typeof win !== 'undefined'){ |
// Entry point of the application | |
// https://github.com/nwjs/nw.js/issues/6308 | |
nw.Window.open('./src/views/index.html', { | |
position: 'center', | |
width: 1000, | |
height: 600, | |
frame: true | |
}, function(win) { | |
// log the width / height = 1366 / 768 | |
if(typeof win !== 'undefined'){ |
import json
messages = {}
words = [
{
"message": "I am ok",
"channel": "Rita"
https://stackoverflow.com/questions/53799391/input-file-example/53799514#53799514
16 Dec 2018, Sun
You are missing number of things in your code, actually that is not a good way to get the file contents in one line.
This is a simple example that will give you both, a single line and a list of words.
raw_file.txt
Advanced system settings
>>> import pandas as pd
>>>
>>> dri = pd.date_range("2018/01/01", periods=2, freq="d")
>>>
>>> df = pd.DataFrame({"time": dri, "price": [12, 15]}, index = [1, 2])
>>> df
time price