Skip to content
Open navbar menu
Sign UpLog In
Profile icon

Archana Kumar

@Archanakumar13
Completed my BMM in 2019. Switching fields and planning on pursuing my MS in Finance integrated with Data Sciences. Keen on learning Python.
Archanakumar13
Archanakumar13
shared a Post
3 years ago
What are some of the best websites to learn python if you are an absolute beginner?
Hey guys! Can anyone share some of the best websites to learn python? I don't know anything about the python programming language, and since I am a co
shreyansh2009
shreyansh2009
You can also use this application - Links - iOS - https://apps.apple.com/in/app/mimo-learn-coding-programming/id1133960732 Play Store - https://play.google.com/store/apps/details?id=com.getmimo&hl=en Note - This app is amazing! Try it please!3 years ago
Muffinlavania
Muffinlavania
Here are some very good websites! These have the most basics ideas first, and guide you through them. Once you are done with the basic ones, you can move on to more advanced topics! But this one doesnt really teach you it without buying the book.. www.asmarterwaytolearn.com/python/index-of-exercises.html This one has all the topics listed, i would go with the first ones to learn, the other ones require you to know the basics https://www.geeksforgeeks.org/python-programming-language/3 years ago
SpaceFire
SpaceFire
I know CodingCactus made a Python encyclopedia How To Python and W3Schools have a very useful tutorial.3 years ago
Archanakumar13
Archanakumar13
shared a Post
3 years ago
In the Python Programming Language, How can I use the input function to take the user's Date of Birth and use that to find the user's age in Years, Mo
Inputs
Python
flafflar
flafflar
Please be more specific. You haven't even specified the language you're refferng to. Make sure to read the Guide to asking questions3 years ago
Archanakumar13
Archanakumar13
shared a Post
3 years ago
I have written a code using conditional statements. But, I need to run it on a loop. For example, if I input Today is: Monday and it prints the statem
Conditional Statements
Python
Kopamed
Kopamed
while True: answer = input("What day is it today") if answer.lower() == "monday": print("Oh boy is it monday") #if this is your expected output than add break break elif answer.lower() == "tuesday": print("Not as bad as monday....") `3 years ago
ash15khng
ash15khng
You can do while today != "monday": then add the rest of the code.3 years ago
Jack-S
Jack-S
I guess try something like this: if dayOfWeek == monday: print("I am having the Monday blues again! How long till it is Friday?") I dunno if this will help or not, if not try to be more specific? @Archanakumar133 years ago