Added moduler. /JL

This commit is contained in:
Jan Lerking
2025-03-20 08:32:19 +01:00
parent 8e3ea171b3
commit 89a3aca9d6
4 changed files with 45 additions and 0 deletions

7
moduler/json2.py Normal file
View File

@@ -0,0 +1,7 @@
import json as JS
if __name__ == "__main__":
with open("data.json", "r") as file:
data = JS.load(file)
print(data)