forked from StanislawMorgas/SystemOperacjiNaFunkcjachPWI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinput.py
26 lines (22 loc) · 711 Bytes
/
input.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import json
def zapisz(L):
"""Przyjmuje liste funkcji i zapisuje ją do pliku funkcje.json"""
funkcje_data = {"funkcje": L}
with open('funkcje.json', 'w') as file:
json.dump(funkcje_data, file, indent=4)
print("Funkcje zostały zapisane do pliku 'funkcje.json'.")
print("Miłego dnia :)")
"""
|\ _,,,---,,_
ZZZzz /,`.-'`' -. ;-;;,_
|,4- ) )-,_. ,\ ( `'-'
'---''(_/--' `-'\_)
"""
def wczytaj():
"""Zwraca liste funkcji z pliku funkcje.JSON"""
with open('funkcje.json', 'r') as file:
data = json.load(file)
funkcje_lista = data['funkcje']
print("Funkcje zostały wczytane.")
print("Miłego dnia :)")
return funkcje_lista