Authentication sectionNew to Python, creating a craps game when given n gamesTkinter Label, TypeError: cannot concatenate 'str' and 'instance' objectsScore system in game. PYTHON 3.5iterating through a list of objects which is loaded by pickleHow to conditionally extract lines from a file, edit them, and insert them backrandom integers and receiving them and saving themBeginning my while loop in the two dice pig game in pythonwrite on new line in csvHow do I overwrite part of a text file in pythonHow to print a sorted list from an external text document on Python?

Was there ever any real use for a 6800-based Apple I?

Early arrival in Australia, early hotel check in not available

What to do if SUS scores contradict qualitative feedback?

Speculative Biology of a Haplodiploid Humanoid Species

Why was castling bad for white in this game, and engine strongly prefered trading queens?

iMac 27" 2017 memory upgrade question

Why is “Ich wusste, dass aus dir mal was wird” grammitally correct?

What is Plautus’s pun about frustum and frustrum?

How can I answer high-school writing prompts without sounding weird and fake?

How to select certain lines (n, n+4, n+8, n+12...) from the file?

use the oversamplling followed by '' decimation method ''to increasee the ADC resolution and not normal averaging

Why does my circuit work on a breadboard, but not on a perfboard? I am new to soldering

How can this triangle figure be modeled/drawn with TikZ?

How can dragons propel their breath attacks to a long distance

What are the implications of the new alleged key recovery attack preprint on SIMON?

On what legal basis did the UK remove the 'European Union' from its passport?

Smallest Guaranteed hash collision cycle length

Proof that the inverse image of a single element is a discrete space

Change FormFunction button color

Why does getw return -1 when trying to read a character?

How to use structured binding in an array passed as arg to some function?

Drawing lines to nearest point

How can a Lich look like a human without magic?

How to cope with regret and shame about not fully utilizing opportunities during PhD?



Authentication section


New to Python, creating a craps game when given n gamesTkinter Label, TypeError: cannot concatenate 'str' and 'instance' objectsScore system in game. PYTHON 3.5iterating through a list of objects which is loaded by pickleHow to conditionally extract lines from a file, edit them, and insert them backrandom integers and receiving them and saving themBeginning my while loop in the two dice pig game in pythonwrite on new line in csvHow do I overwrite part of a text file in pythonHow to print a sorted list from an external text document on Python?






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








1















I'm trying to design a game where the user rolls a dice and gets points added to their score. However, it needs a way to store users, which it has in the form of an external file.



Can anyone help me in trying to write this section of code which checks if the username and password is in the external file? If not, it closes the program, preventing the user from playing. Any help greatly appreciated!



authen = str(input("Please enter a valid username and password: "))

if authen is not in (users.txt):

break









share|improve this question
























  • There are actually quite a few sub-questions here: how to get a username and password from input, how to open a file, how to check if the username and password pair are in the file...you might benefit from better scoping your question.

    – gmds
    Mar 23 at 12:08











  • I just want to check if the username and password are the file. I've already opened the file:

    – Oliver
    Mar 23 at 12:32











  • file = open("users.txt", "r")

    – Oliver
    Mar 23 at 12:32











  • If your question is just "how to locate text in a file", then text in file.read() will be a boolean value, for some value of text, that should be sufficient. However, given your use-case, that will likely not be enough.

    – gmds
    Mar 23 at 12:34


















1















I'm trying to design a game where the user rolls a dice and gets points added to their score. However, it needs a way to store users, which it has in the form of an external file.



Can anyone help me in trying to write this section of code which checks if the username and password is in the external file? If not, it closes the program, preventing the user from playing. Any help greatly appreciated!



authen = str(input("Please enter a valid username and password: "))

if authen is not in (users.txt):

break









share|improve this question
























  • There are actually quite a few sub-questions here: how to get a username and password from input, how to open a file, how to check if the username and password pair are in the file...you might benefit from better scoping your question.

    – gmds
    Mar 23 at 12:08











  • I just want to check if the username and password are the file. I've already opened the file:

    – Oliver
    Mar 23 at 12:32











  • file = open("users.txt", "r")

    – Oliver
    Mar 23 at 12:32











  • If your question is just "how to locate text in a file", then text in file.read() will be a boolean value, for some value of text, that should be sufficient. However, given your use-case, that will likely not be enough.

    – gmds
    Mar 23 at 12:34














1












1








1








I'm trying to design a game where the user rolls a dice and gets points added to their score. However, it needs a way to store users, which it has in the form of an external file.



Can anyone help me in trying to write this section of code which checks if the username and password is in the external file? If not, it closes the program, preventing the user from playing. Any help greatly appreciated!



authen = str(input("Please enter a valid username and password: "))

if authen is not in (users.txt):

break









share|improve this question
















I'm trying to design a game where the user rolls a dice and gets points added to their score. However, it needs a way to store users, which it has in the form of an external file.



Can anyone help me in trying to write this section of code which checks if the username and password is in the external file? If not, it closes the program, preventing the user from playing. Any help greatly appreciated!



authen = str(input("Please enter a valid username and password: "))

if authen is not in (users.txt):

break






python passwords






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 23 at 13:59









petezurich

3,94581936




3,94581936










asked Mar 23 at 11:58









OliverOliver

41




41












  • There are actually quite a few sub-questions here: how to get a username and password from input, how to open a file, how to check if the username and password pair are in the file...you might benefit from better scoping your question.

    – gmds
    Mar 23 at 12:08











  • I just want to check if the username and password are the file. I've already opened the file:

    – Oliver
    Mar 23 at 12:32











  • file = open("users.txt", "r")

    – Oliver
    Mar 23 at 12:32











  • If your question is just "how to locate text in a file", then text in file.read() will be a boolean value, for some value of text, that should be sufficient. However, given your use-case, that will likely not be enough.

    – gmds
    Mar 23 at 12:34


















  • There are actually quite a few sub-questions here: how to get a username and password from input, how to open a file, how to check if the username and password pair are in the file...you might benefit from better scoping your question.

    – gmds
    Mar 23 at 12:08











  • I just want to check if the username and password are the file. I've already opened the file:

    – Oliver
    Mar 23 at 12:32











  • file = open("users.txt", "r")

    – Oliver
    Mar 23 at 12:32











  • If your question is just "how to locate text in a file", then text in file.read() will be a boolean value, for some value of text, that should be sufficient. However, given your use-case, that will likely not be enough.

    – gmds
    Mar 23 at 12:34

















There are actually quite a few sub-questions here: how to get a username and password from input, how to open a file, how to check if the username and password pair are in the file...you might benefit from better scoping your question.

– gmds
Mar 23 at 12:08





There are actually quite a few sub-questions here: how to get a username and password from input, how to open a file, how to check if the username and password pair are in the file...you might benefit from better scoping your question.

– gmds
Mar 23 at 12:08













I just want to check if the username and password are the file. I've already opened the file:

– Oliver
Mar 23 at 12:32





I just want to check if the username and password are the file. I've already opened the file:

– Oliver
Mar 23 at 12:32













file = open("users.txt", "r")

– Oliver
Mar 23 at 12:32





file = open("users.txt", "r")

– Oliver
Mar 23 at 12:32













If your question is just "how to locate text in a file", then text in file.read() will be a boolean value, for some value of text, that should be sufficient. However, given your use-case, that will likely not be enough.

– gmds
Mar 23 at 12:34






If your question is just "how to locate text in a file", then text in file.read() will be a boolean value, for some value of text, that should be sufficient. However, given your use-case, that will likely not be enough.

– gmds
Mar 23 at 12:34













0






active

oldest

votes












Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55313497%2fauthentication-section%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55313497%2fauthentication-section%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

SQL error code 1064 with creating Laravel foreign keysForeign key constraints: When to use ON UPDATE and ON DELETEDropping column with foreign key Laravel error: General error: 1025 Error on renameLaravel SQL Can't create tableLaravel Migration foreign key errorLaravel php artisan migrate:refresh giving a syntax errorSQLSTATE[42S01]: Base table or view already exists or Base table or view already exists: 1050 Tableerror in migrating laravel file to xampp serverSyntax error or access violation: 1064:syntax to use near 'unsigned not null, modelName varchar(191) not null, title varchar(191) not nLaravel cannot create new table field in mysqlLaravel 5.7:Last migration creates table but is not registered in the migration table

은진 송씨 목차 역사 본관 분파 인물 조선 왕실과의 인척 관계 집성촌 항렬자 인구 같이 보기 각주 둘러보기 메뉴은진 송씨세종실록 149권, 지리지 충청도 공주목 은진현