Machine Learning
12:30
2 ай бұрын
Programming
12:30
2 ай бұрын
PyLesson_01(2024)
1:43
2 ай бұрын
LCC VS Torrey JVG 4 27 24
53:11
6 ай бұрын
JV End Of Year Tourney 2024
1:24:09
6 ай бұрын
CC Vs San Marcose JVG 4 24 24
57:24
LCC vs SDA JVG 3 20 24
53:47
7 ай бұрын
CompProBTSN
2:29
4 жыл бұрын
APCSA BTSN
2:36
4 жыл бұрын
APCSP BTSN
2:15
4 жыл бұрын
PyQ2 Recursion and FreeResponse
8:00
PyQ2 for loops
8:00
5 жыл бұрын
String Index Out Of Range Python
3:44
APL_06: Intro to Arrays and Loops
12:30
APL_06: Creating Arrays in Java
12:59
APL_06: User inputs in loops
3:58
5 жыл бұрын
APQ2 Study Guide Recursion
9:00
5 жыл бұрын
APReveiw: Recusive Algorithms
9:24
5 жыл бұрын
Q1 - OrderOfOps
6:19
6 жыл бұрын
Q1 - Formatting
4:09
6 жыл бұрын
Q1 - Scope
7:15
6 жыл бұрын
PyL4 - Setting Up the Reciept
3:31
6 жыл бұрын
PyL3 - Setting up Global Vars
5:14
6 жыл бұрын
APL3 - Math.pow()
6:50
6 жыл бұрын
PyL3 - Setting up Loan Payment
5:53
6 жыл бұрын
APL3 - String Formatting Help
7:26
6 жыл бұрын
APL3 - Setting Up Print Formatting
5:20
PyL03 - Print Formatting Example
8:22
Пікірлер
@B0T_Monka
@B0T_Monka Жыл бұрын
Hi Mr. Robinette, I was hoping you could grade my work. I've done everything except Ap lab 6.1 and game lesson 2-4. I even redid My ap unit 7 frq p2 and p3 to get the full 20/20. I'm not looking for an A, not even a B, I just want to pass the class and would love it if you're able to grade my assignments. Thank you and have a nice summer. From, Matt Martin
@manastandel6647
@manastandel6647 Жыл бұрын
Hey Mr. Robinette whats up
@Herobrinepleaz9
@Herobrinepleaz9 Жыл бұрын
great video!
@mgmanalys
@mgmanalys 5 жыл бұрын
hi , help-me... import smtplib, sys, os def check(host,port,log,pas,fl): try: s = smtplib.SMTP(host,port, timeout=10) s.ehlo() s.starttls() s.ehlo() s.login(log,pas) fl.write("{0}:{1}:{2}:{3} ".format(pas,log,host,port)) s.close() except smtplib.SMTPAuthenticationError: print(host,"Incorrect login/password") except smtplib.SMTPServerDisconnected: print(host,"Unable to connect") # This is used to clean result file. #os.remove("checked.txt") fl = open("checked.txt", "a") if len(sys.argv) < 2: print ("Usage: smtpchecker.py smtps.txt") with open(sys.argv[1],'r') as smtps: for line in smtps: smtp = line.split(":") check(smtp[2],int(smtp[3]),smtp[1],smtp[0],fl) fl.close() -------------------------------------- line 27, in <module> check(smtp[2],int(smtp[3]),smtp[1],smtp[0],fl) IndexError: list index out of range --------------------------------------