Skip to content

Commit 3b3e704

Browse files
committed
changing folder and files format
1 parent d355111 commit 3b3e704

20 files changed

+5
-5
lines changed

Projects-1/Alarm Clock/Alarm-Clock.py renamed to Alarm Clock/Alarm-Clock.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def alarm(set_alarm_timer):
2222
play = 0
2323
while play != 10: # This will ring alarm for 10 seconds
2424
playsound(
25-
"/home/harsh/Harsh/Python/TryCatch-Projects/Projects-1/sound.wav")
25+
"sound.wav")
2626
play += 1
2727
print("Set alarm again")
2828
return
File renamed without changes.

Projects-1/Num2Words/num-to-words.py renamed to Num2Words/num-to-words.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def num_to_words():
5454

5555

5656

57-
photo = PhotoImage(file = "Projects-1/Num2Words/number.png")
57+
photo = PhotoImage(file = "Num2Words/number.png")
5858
root.iconphoto(False, photo)
5959

6060
root.mainloop()
File renamed without changes.

Projects-1/Password Genetator/Password-Generator.py renamed to Password Genetator/Password-Generator.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ def copyclip():
295295
copy_btn = Button(master=root, text="Copy", fg="green",
296296
font=("Arial", 10, 'bold'), command=copyclip).place(x=320, y=230)
297297

298-
photo = PhotoImage(file="Projects-1/Password Genetator/password.png")
298+
photo = PhotoImage(file="Password Genetator/password.png")
299299
root.iconphoto(False, photo)
300300

301301
root.mainloop()
-106 KB
Binary file not shown.
File renamed without changes.

Projects-1/Tax Calculator/tax-calculator.py renamed to Tax Calculator/tax-calculator.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def calculate_cost():
3636
total_cost = "0"
3737

3838
#Reading Country-Tax CSV File
39-
reader = pd.read_csv("Projects-1/tax.csv")
39+
reader = pd.read_csv("tax.csv")
4040
countries = list(reader['Country'].values)
4141

4242
title = Label(root, text="Tax Calculator",
@@ -76,7 +76,7 @@ def calculate_cost():
7676
fg="black", font=("Arial", 15, 'bold'))
7777
total_cost_value.place(x=370, y=200)
7878

79-
photo = PhotoImage(file = "Projects-1/Tax Calculator/tax.png")
79+
photo = PhotoImage(file = "Tax Calculator/tax.png")
8080
root.iconphoto(False, photo)
8181

8282
root.mainloop()
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)