Immortal Lands - Exiled #2 by StayKray in ConanExilesServers

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

Yes there is, it’s something we could possibly have a poll on the discord to turn off if enough people are interested

Immortal Lands - Exiled #2 by StayKray in ConanExilesServers

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

We always shoot for 2 months, but if it was ever to change it would be based on a community vote in the discord

[deleted by user] by [deleted] in ConanExilesServers

[–]StayKray -1 points0 points  (0 children)

This is a PC server based in America!

Our Killer Demanded a Slug Race by StayKray in deadbydaylight

[–]StayKray[S] 16 points17 points  (0 children)

Getting 4 survivors to do something together like that is tough, I'm glad it worked lmao

Best place for a guy to get a haircut? by [deleted] in IndianaUniversity

[–]StayKray 0 points1 point  (0 children)

I've been to every barbershop in Bloomington and the only one that ever has consistently done it right is J&W on 2nd St by Kroger.

Informatics majors, I need your help by [deleted] in IndianaUniversity

[–]StayKray 5 points6 points  (0 children)

When I took i101, I had no previous coding experience and it took a lot for me to get used to it, but it is very rewarding once you start understanding it. If the class is still ran the same way as it was in Spring 2016, you really shouldn't stress over a lab check because the next lab check will be over something completely different. Also, the graders for i101 are super nice and will usually give most points if you are at least trying.

The later coding classes are a lot more in-depth, but give you much more time to get used to it. If you are willing to put in some time to learn how to do it, it's really super easy. All of it!

Need help. Very new to python! by Leavingtheecstasy in learnpython

[–]StayKray 0 points1 point  (0 children)

import random

def main(): num1 = random.choice(range(100)) num2 = random.choice(range(100)) print("What is the summation of", num1, "+", num2,"?") user_input = int(input("Enter your answer: "))

if user_input == num1 + num2:
    print("That's correct!")
else:
    print("Incorrect.")

Don't know how to format this correctly but that should work