added another one

This commit is contained in:
Jonas_Jones 2023-09-07 17:54:48 +02:00
parent 389ed3d258
commit 2f2e677ce1

14
keyvaluepairgenerator.py Normal file
View file

@ -0,0 +1,14 @@
# Open the file in write mode ('w')
with open('uwu.txt', 'w') as file:
while True:
input1 = input('Enter input-1 (or leave it empty to exit): ')
input2 = input('Enter input-2 (or leave it empty to exit): ')
# Check if both inputs are empty, and exit the loop if they are
if not input1 and not input2:
break
# Write the input pair to the file in the specified format
file.write(f"'{input1}': '{input2}',\n")
print('Data saved to uwu.txt.')