This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import "./styles.css"; | |
export default function App() { | |
let data = { | |
fqNumber: "FQ42523424", | |
fqStatus: "Active", | |
fqDate: "xyz date", | |
nested: { | |
test: "This is just a test value" | |
}, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
file_name = input('Which data file do you want to use? ') | |
with open(file_name) as f: | |
content = f.readlines() | |
content_clean = [] | |
for i in content: | |
temp = i.strip('\n') | |
content_clean.append(temp) | |
content_list = [] | |
temp_int_list = [] | |
for i in content_clean: |