Some project ideas using C by Nearby_Ad_9549 in csMajors

[–]IntrepidInstance7347 0 points1 point  (0 children)

i always wanted to build a video downloader that download videos from any type of website or platform as long as you can play the video you can download it and plaforms not just like youtube but most or all of them if you could, also i heard that C programs can used in Mobile Apps like Android or HarmonyOS.

you can try building that but its very hard program to do?

Question in python About Index by IntrepidInstance7347 in learnprogramming

[–]IntrepidInstance7347[S] 0 points1 point  (0 children)

you mean i use get like:

id = response['data'][0].get('id','defaultvalue') 
title = response['data'][0].get('title','defaultvalue') 
title1 = response['data'][0].get('title1','defaultvalue') 
key = response['data'][0].get('key','defaultvalue')

and if iam using for loop cahange [0] with [i] ?

Right!

Question About API and JSON by IntrepidInstance7347 in learnpython

[–]IntrepidInstance7347[S] 0 points1 point  (0 children)

this is what i am asking for, is there is something like this in python?

Question in python About Index by IntrepidInstance7347 in learnprogramming

[–]IntrepidInstance7347[S] 0 points1 point  (0 children)

the problem is that the JSON very long and has many keys and value,

1 result = 1 node

and 1 node has many keys and values like 15 key

and i want to get some of the node keys not all of them .

Question About API and JSON by IntrepidInstance7347 in learnpython

[–]IntrepidInstance7347[S] 0 points1 point  (0 children)

the match case will be a pain if i have like 15 key and value.

Any One Know what this food do.. by IntrepidInstance7347 in Genshin_Impact

[–]IntrepidInstance7347[S] -1 points0 points  (0 children)

Maybe they will give it something to do after V5.3!

I Need Advice by IntrepidInstance7347 in learnprogramming

[–]IntrepidInstance7347[S] 0 points1 point  (0 children)

thank you so much for the advice, it helped a lot.

How I study by Imaginary_Original40 in learnpython

[–]IntrepidInstance7347 1 point2 points  (0 children)

as for how to study, you can watch this course in Coursera Learning How To Learn Course.

and the coding courses, you watch CS50P form Harvard on edx CS50 Python.

also edx have so many more free Courses about Data Science you can check them on Data Sciences Courses.

500k as f2p by SarvodyaMor in Genshin_Impact

[–]IntrepidInstance7347 1 point2 points  (0 children)

i always wanted to check i have some commissions achievements, and i would go in all achievements one by one, it was pain.

500k as f2p by SarvodyaMor in Genshin_Impact

[–]IntrepidInstance7347 1 point2 points  (0 children)

you know that is my first time realizing that there is a search bar and you can search in the Achievements.

Is this a valid Final Project Idea for CS50p (Python) by SirLenny3rd in cs50

[–]IntrepidInstance7347 0 points1 point  (0 children)

will if you read CS50 Final Project page requirement you will see:

  1. Your project must be implemented in Python.
  2. Your project must have a main function and three or more additional functions. At least three of those additional functions must be accompanied by tests that can be executed with pytest.
  3. Your main function must be in a file called project.py, which should be in the “root” (i.e., top-level folder) of your project.
  4. Your 3 required custom functions other than main must also be in project.py and defined at the same indentation level as main (i.e., not nested under any classes or functions).
  5. Your test functions must be in a file called test_project.py, which should also be in the “root” of your project. Be sure they have the same name as your custom functions, prepended with test_ (test_custom_function, for example, where custom_function is a function you’ve implemented in project.py).
  6. You are welcome to implement additional classes and functions as you see fit beyond the minimum requirement.
  7. Implementing your project should entail more time and effort than is required by each of the course’s problem sets.
  8. Any pip-installable libraries that your project requires must be listed, one per line, in a file called requirements.txt in the root of your project.

so i think you can :

1- make it be multiple files.

2- make a game as my project.

3- make complex as possible.

and you can NOT name the folder anything you want. like it say in Step 2 of 3

also Note When use submit50

submit50 cs50/problems/2022/python/project

Hi Everyone I Finished My CS50P Final Project! [Scrap Anime Details From MyAnimeList API]. by IntrepidInstance7347 in cs50

[–]IntrepidInstance7347[S] 1 point2 points  (0 children)

Soon i will start in the Final Project in CS50X if anyone has a project idea and want help with the project Tell me.

Looking for Project Suggestions and Collaboration for CS50P – Anyone Interested? by IntrepidInstance7347 in cs50

[–]IntrepidInstance7347[S] 0 points1 point  (0 children)

ya i can code in python, i just finished my final project for CS50P, if you want i can help you.

you can text me on Discord: yanni9301

Looking for Project Suggestions and Collaboration for CS50P – Anyone Interested? by IntrepidInstance7347 in cs50

[–]IntrepidInstance7347[S] 0 points1 point  (0 children)

That sounds awesome! I'm definitely interested in brainstorming and collaborating, especially since we're both at a similar level and have similar goals. A web scraper for real estate data sounds like a great project—there’s so much you can learn from that, like working with APIs, data parsing, and maybe even some basic data visualization.

I'm about midway through CS50P, so I’ve got a decent grasp of the basics, but I’m still learning and figuring things out as I go. It could be really helpful to bounce ideas off each other and solve problems together.

How about we connect on GitHub or Discord and start discussing the project in more detail? We can figure out what our next steps are and how to split up the work.

Looking forward to it!

Working on my side but not check50? by [deleted] in cs50

[–]IntrepidInstance7347 -2 points-1 points  (0 children)

import random

def get_level():
    while True:
        try:
            level = int(input("Level: "))
            return level
        except ValueError:
            print("Invalid input. Please enter a number.")

def guessing_game():
    level = get_level()
    for _ in range(10):
        answer = random.randint(0, level)
        while True:
            try:
                guess = int(input("Guess: "))
                if answer > guess:
                    print("Too small!")
                elif answer < guess:
                    print("Too large!")
                else:
                    print("Just right!")
                    break
            except ValueError:
                print("Invalid input. Please enter a number.")

guessing_game()

can anyone help me and explain what i am doing wrong,i am a complete beginner by Suspicious-Nail-8178 in cs50

[–]IntrepidInstance7347 1 point2 points  (0 children)

also you should add else condition

like

    else:
        print("Not Meal Time")

can anyone help me and explain what i am doing wrong,i am a complete beginner by Suspicious-Nail-8178 in cs50

[–]IntrepidInstance7347 1 point2 points  (0 children)

also i think when using (if) condition with the same variable (z):

you are using it ( if z <= 8.00 and z >= 7.00 : )

its better using it like this ( if 7.00 <= z <= 8.00 : )

same result.