I am trying to make a project that requires a multiplayer variable. For example, if I made a variable called "x" and someone said x += 1
then everyone's x would be one more. Could someone please tell me if there is some kind of module that can do this, or if it is impossible?
Thank you
well you can use a class like so...
now when you do Myclass.x + 1
Myclass.x will equal 1 for everyone that uses Myclass.x.
You could also use global variable.
Also what do you mean by everyone. Are they all going to be having their own process of the application running? You could just do math on variables in a shared .txt document or something like...
to read x you could do ...
mytext.txt
code.py
and to change x you can do ...
code.py
so you can have something like...
input = int('Type here: ') # output: Type here:
Friends console
output: Type here: x += 1
you just write the input into the text file
writex(input)
and x+=1 value gets written to first like of the text.txt file etc.
or you could use sockets and so on.
You could also use global variable.