How To Code A To Do List App In Python | Programming Tutorials For Beginners

preview_player
Показать описание
Hey Everyone!

In today's video, we discuss how to code a to do list application in python. To do list apps are great for organizing your daily tasks into a simple and easy to interact with application! Enjoy!

Thanks for watching! :)

Source code & detailed explanation
--------------------------------------------------------------------------------------

This project is available on GitHub at
--------------------------------------------------------------------------------------

Add Me On Discord!
--------------------------------------------------------------------------------------
Username: Shaun(Hashtag)5626

Want to see more?
--------------------------------------------------------------------------------------

Legal Disclaimer
--------------------------------------------------------------------------------------
Assets in the thumbnail & video were provided by artists on

The art used in this video is from Canva and is used solely for the purpose of enhancing or demonstrating these coding tutorials. I do not claim ownership or credit for any of the art shown in this video. I am a paid member of Canva Pro and have the rights to use the art in this video as outlined in my membership agreement. If you have any questions about the use of the art in this video, please contact me.

Video Tags
--------------------------------------------------------------------------------------
Software Engineering / Programming for beginners / variables types / computer science / compsci / coding for beginners / learn how to program / learn how to code / C# variables / python for beginners / coding tutorial / programming tutorial

#programming #tutorial #learntocode
Рекомендации по теме
Комментарии
Автор

Thanks for the help on the hangman video, Im going to have to do this tomorrow!

CriDef
Автор

thanks for this great tutorial, i liked they way you put every thing in very easily understandable parts. we need more videos.

call-me-potato.
Автор

Thank you Shaun. Your video was the most helpful

amaharra
Автор

Thank you. I learned something new today and I really appreciate your efforts.

CookiePirate
Автор

"ListTasks" is not defined or accessed PyLance - any ideas? I'm using VS Code.
Thanks for the video

jdaking
Автор

Hi Shaun how do I reach out to you and ask a coding question? Got an idea I want advice on. Thanks!

WilliamCowper
Автор

hi . please address this problem: every time we run code previously added items are removed. for example i added some tasks and can view it but once i rerun code all previously added tasks are gone. i think this is happening because code restart from top where tasks[ ] (empty list) is initialized and hence previously added items are deleted.

call-me-potato.
Автор

Thankss. But you didn't put many tasks to test. Pease try it and the list task are all in the same number

Jirayaaaaaa
Автор

Thank you so much, you helped a lot !!

rutujavisale
Автор

Ej bro,
First of all. Thank you, saving me
If i could ask for more c# and windows Forms?
Anyway,
You deserve way more views and shizzle

benedictcherlet
Автор

Things to do with password, notification can you help and make tutorial about them

HussenSadam-dwvq
Автор

infinity while loop, no stopping condition😄

cruzmoses
Автор

def update_task():
view_task()
try:
taskToUpdate = int(input("ENTER THE NUMBER OF THE TASK YOU WANTED TO UPDATE : "))
if taskToUpdate >= 0 and taskToUpdate < len(task):
new_task = input("ENTER TASK : ")
task[taskToUpdate] = new_task
print(f"TASK '{new_task}' UPDATED")

else:
print("TASK NOT FOUND")

except:
print("INVALID INPUT")

we can add this update feature too...!!

mayanksolanki