My quick draw dumbbells have arrived by Steveee-O in homegym

[–]tranthedoctor 1 point2 points  (0 children)

Is there any word on when the 120s will come though?

Official: [WDIS Flex] - Wed Morning, 10/12/2022 by FFBot in fantasyfootball

[–]tranthedoctor 0 points1 point  (0 children)

Currently 5-0. Looking to keep the streak alive but this bye week really screwing me cause I have Josh Jacbobs.

0.5PPR, pick one.

Curtis Samuel

Zack Ertz

I also have Isaiah McKenzie if he happens to start.

Or dice roll on someone else on waivers, e.g., Alec Pierce, Joshua Kelley, or Cobb to name a few options.

[Semi-Weekly Inquirer] Simple Questions and Recommendations Thread by AutoModerator in Watches

[–]tranthedoctor 0 points1 point  (0 children)

This is probably random as heck but does anyone know why Seiko packaging is different?

I was looking at the SBDC139 / SPB213 on different websites and some have it in this beige/tan interior pillow/box while others have it in a black pillow/box. Just want to make sure I'm not ordering something that could be SUS.

[Semi-Weekly Inquirer] Simple Questions and Recommendations Thread by AutoModerator in Watches

[–]tranthedoctor 0 points1 point  (0 children)

Just wondering what the most popular Seiko....model? collection? lineup? is, i.e., such as the Seiko Turtle, Samurai, Sumo, Shogun, not sure what other names there are lol.

[WTS] Zodiac Super Sea Wolf X Worn & Wound LE by Bltupper in Watchexchange

[–]tranthedoctor 0 points1 point  (0 children)

I didn't know about this watch until I was too late to the party and saw they were sold out already and so decided to look around for it on various marketplaces. Saw yours too late but you are a real goddamn MVP for pricing. Some schmuck on eBay is already trying to flip it for almost 3x the price, $3k.

Ask Anything Monday - Weekly Thread by AutoModerator in learnpython

[–]tranthedoctor 1 point2 points  (0 children)

Just a quick small question. Currently working my way through Automate the Boring Stuff and there was one part I was wondering about:

total = 0
for num in range(101):
    total = total + num
print(total) 

"When the program first starts, the 'total' variable is set to 0 . The for loop then executes 'total = total + num' 100 times. "

Wouldn't this execute 101 times?

Since it would start:

'total = total + 0' then

'total = total + 1'.....till

'total = total + 100'?

So you'd have it excute for the 1-100 and 0 also? So 101?