App Ideas

  • journal app with prompts
    • random prompts will be given
    • use has set amount per prompt
    • user also has option to free write
    • inputs are stored and can be accessed by user
  • writing practice app
    • random prompts will be given to user
    • user has a set amount of time to write about given prompt
    • user's input is stored and can be accessed by user
  • drawing app
  • planner app
  • calculator app

Things I can do:

InfoDb = []    # defining an empty list
InfoDb.append({    # to append values to list
print(InfoDb)      # will print the data structure


# While loop contains an initial n and an index incrementing statement (n += 1)
def while_loop():
    print("While loop output\n")
    i = 0
    while i < len(InfoDb):
        record = Quiz[i]
        print (record)
        i += 1
    return

while_loop()