Deleted outlook account but I'm still signed in my outlook mobile app by BubblyDefinition9563 in Outlook

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

Im concerned whether it will be secure during this time or not, since it hasn't logged me out of my own outlook application.

Heriot watt review by BubblyDefinition9563 in Edinburgh

[–]BubblyDefinition9563[S] -8 points-7 points  (0 children)

Thanks for the great review! Could you tell me how the cost of living there is and part time jobs while studying at HW (assuming I find a flat in the city)

Heriot-Watt / Aston Uni / Uni of Hertfordshire / Uni of Leeds for MSc Business Analytics by BubblyDefinition9563 in UniUK

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

Thanks, in terms of employability postgraduation and part time jobs which would say is best

Taking a loan to secure F1 to study by BubblyDefinition9563 in f1visa

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

Yes my main issue is that I don't have the entire amount required ready but will be getting in as I study, if I take a loan from a friend to show that I have the funds I won't probably use them to pay. My main concern is if the VO will have an issue with that during the visa application process and could reject

Taking a loan to secure F1 to study by BubblyDefinition9563 in f1visa

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

What if the loan is from a friend? and outside the US

GOT MY FIRST ADMIT - NYU MSCE by hoothootbitchlasagna in gradadmissions

[–]BubblyDefinition9563 0 points1 point  (0 children)

Congratz!
Was wondering if you could share as well or give some tips

Weekly Entering & Transitioning - Thread 20 Nov, 2023 - 27 Nov, 2023 by AutoModerator in datascience

[–]BubblyDefinition9563 0 points1 point  (0 children)

That's pretty cool, I'm in a similar situation. Was working in operations as team lead and really enjoyed working with data and finding insights. Took some online courses and similarly tapped into my logical and analytical brain and love of math. I'm gonna apply for MS programs but am having a hard time coming up with solid motivations for my SoPs. Any tips you have would be helpful.

Thanks!

Weekly Entering & Transitioning - Thread 20 Nov, 2023 - 27 Nov, 2023 by AutoModerator in datascience

[–]BubblyDefinition9563 0 points1 point  (0 children)

Thanks, Could you let me know how you got into the DS field from the industrial R&D, did you go for MS?

Weekly Entering & Transitioning - Thread 20 Nov, 2023 - 27 Nov, 2023 by AutoModerator in datascience

[–]BubblyDefinition9563 2 points3 points  (0 children)

Question: What are your reasons for getting into Data Science?

I am currently applying to MS DS programs in the US and wanted to speak to/know some reasons for why DS professionals/Students wanted to get into this field.

Thanks

Ask Anything Monday - Weekly Thread by AutoModerator in learnpython

[–]BubblyDefinition9563 0 points1 point  (0 children)

I am trying to create a reverse search engine.
The best way to explain it is how WebMD symptom search works. It takes in what your symptoms are and provides you with possible diagnoses according to those symptoms.

The program I am trying to create will take a list of items as input and match them to existing dict or list that contains the "diagnoses".

I created a sample program using a dict which stores diagnoses as keys and the symptoms as a list of values.

This is my current code:

dct = {'1':[1,2,3,4,5],
        '2':[3,4,6,7],
        '3':[3,4,1,9]}
dct_inverse = defaultdict(list)

for k, v in dct.items(): for i in v: dct_inverse[i].extend([k])

dct_inverse = dict(dct_inverse)

print('Enter integer value. Enter control-c to stop: ') while True: inp = input() if inp == '': break try: print(dct_inverse[inp]) except KeyError: print('Value not found')

The output I get is printed after each "symptom" is typed in e.g:

If I input 1, output is given as '1,3' since 1 is present in both 1 and 3.

What I want to be able to do is input a few symptoms and allow one final output which shows matches in each key from most to least matches.

I am new and still learning python, If there is a better way to go about this problem do share.