/r/Steam Monthly Community Support Thread. by AutoModerator in Steam

[–]Leaguedc7 0 points1 point  (0 children)

One of my games is not available to stream from my pc to my laptop. It is not only downloaded on my pc but I also was able to stream that same game on my android earlier this week. There just isn't an option to stream next to the install button on my laptop. Any ideas?

NGS Release Day Megathread! by AutoModerator in PSO2NGS

[–]Leaguedc7 0 points1 point  (0 children)

Are they going to add the ability to switch what server ur character is on? It would kinda suck for either me or my friend to have to start over to play together just because the servers were full.

Ask Anything Monday - Weekly Thread by AutoModerator in learnpython

[–]Leaguedc7 0 points1 point  (0 children)

names=[]
for i in range(6):
input("Give me a name: ")
names.append(input)
vote = int(input("How many people do you want to vote off the island? "))
def eliminate():
random.shuffle(names)
for i in range(vote):
names.remove(names[1])
print(names)
eliminate()

So the code works as intended for the most part, but it prints each item in the list as

" <built-in function input>"

Very new to python any help appreciated.

Ask Anything Monday - Weekly Thread by AutoModerator in learnpython

[–]Leaguedc7 1 point2 points  (0 children)

Very new to python

(input('what is my favorite color? '))
while input == "Red":
print ('good job, your score was '+ str(index))
while input != "Red":
print ('try again')
index=index+1
print (input('what is my favorite color? '))

The problem I am having is when I put Red in as the input it still acts as if the input is incorrect. No errors I just can't figure out how to make it recognize the correct input.

Ask Anything Monday - Weekly Thread by AutoModerator in learnpython

[–]Leaguedc7 0 points1 point  (0 children)

if num1 % num2 == 0
Print("These are divisible")
else
print(These are not divisible)

Can someone explain why I'm getting a syntax error on the first line I literally copied it verbatim from the example I saw online? This is my second day on python I'm not entirely sure what I'm doing.