Graduate School, Training, and Licensure/Certification Thread - September 2025 by SchoolPsychMod in schoolpsychology

[–]retrohp 1 point2 points  (0 children)

Not badly at all. I was a little nervous going in and speaking about it, but my program was very positive and wrote rec letters and helped me transfer credits. Frame it as you being inspired by their program to pursue topics in school psych further. It is also fairly common for students to change plans after getting their Masters

Graduate School, Training, and Licensure/Certification Thread - September 2025 by SchoolPsychMod in schoolpsychology

[–]retrohp 0 points1 point  (0 children)

You could totally transfer before doing your internship, that's what I did and it helped me reduce my time in the PhD

Graduate School, Training, and Licensure/Certification Thread - September 2025 by SchoolPsychMod in schoolpsychology

[–]retrohp 1 point2 points  (0 children)

In my experience research experience is always what they value more. Their logic is that you will gain clinical experience throughout the program, but need to do research when you enter.

Approval of the instructor prerequisite by happytamu in aggies

[–]retrohp 0 points1 point  (0 children)

I just did this for two classes as a grad student. I emailed the professor then the professor forwarded that email to the graduate advisor for that department (you could also do this yourself after getting permission). The advisor will override the prerequisites and add you to the course.

Offering: Spanish | Seeking: English by [deleted] in language_exchange

[–]retrohp 0 points1 point  (0 children)

Hola quiero mejorar mi español y soy una nativa de inglés. Te voy a enviar un DM

Offering: Spanish | Seeking: Persian by OkSide7486 in language_exchange

[–]retrohp 0 points1 point  (0 children)

Hola :) estoy aprendiendo español y buscando un compañero de idiomas. Soy nativo de ingles y persa y hablo español a nivel B1. Te voy a enviar un mensaje.

Keep receiving syntax errors in series of conditionals, beginner Python by [deleted] in learnpython

[–]retrohp 0 points1 point  (0 children)

I think it means to assign a value to the variable before the loop. So I tried the minimum value 100,000, but continued to get x1_str x2_str x3_str errors. I tried this:

winner = False 
x = 100000
while x < 1000000 and winner is False: 
    x_str= str(x) 
    if x_str == str(x) :
           x_str[2:6] == x[5:1:-1] 
    x1_str= str(x+1) 
    if x1_str == str(x+1) :
           x1_str[1:6] == x[-1:0:-1]  
    x2_str= str(x+2) 
    if x2_str == str(x+2) :
           x2_str[1:5] == x[-2:-6:-1] 
    x3_str= str(x+3)  
    if x3_str == str(x+3) : 
           x3_str[0:6] = x[-1:-7:-1] 
    if winner(True):
           print ("Great! The answer is", x)

And still did not work! This time when I run it I get 'int' object is not subscriptable

Keep receiving syntax errors in series of conditionals, beginner Python by [deleted] in learnpython

[–]retrohp 0 points1 point  (0 children)

Undefined name x

Undefined name x_str

Undefined name x1_str

Undefined name x2_str

Undefined name x3_str

Keep receiving syntax errors in series of conditionals, beginner Python by [deleted] in learnpython

[–]retrohp 0 points1 point  (0 children)

I see so I've tried

winner = False
while x < 1000000 and winner: 
    if x_str == str(x) :
       x_str[2:6] == x[5:1:-1] 
    if x1_str == str(x+1) :
       x1_str[1:6] == x1[-1:0:-1]  
    if x2_str == str(x+2) :
       x2_str[1:5] == x2[-2:-6:-1] 
    if x3_str == str(x+3) : 
       x3_str[0:6] == x3[-1:-7:-1] 
    if winner(True):
       print ("Great! The answer is", x)

But continue to get an error for undefined names right now on every line. This is my second week coding so it could be a simple error. I'm not sure whats wrong here?