Python Forum
How to use a string method on user input
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
How to use a string method on user input
#1
while input("Hit Enter or type \"stop.\" ") != "stop":
I'm trying to make it so that it doesn't matter if the user capitalizes "stop" or puts it in all caps. I've tried

while input("Hit Enter or type \"stop.\" ") != str.lower("stop"):
but that doesn't seem to do anything. I've also tried

while input(str.lower("Hit Enter or type \"stop.\" ")) != "stop":
but that just makes the prompt lower case. Help?
Reply
#2
You use string methods on a string, not the str type.

while input("Hit Enter or type \"stop.\" ").lower() != "stop":
Since input returns a string, you can put it to the right of the input call, and it will apply to the return value of input.
Craig "Ichabod" O'Brien - xenomind.com
I wish you happiness.
Recommended Tutorials: BBCode, functions, classes, text adventures
Reply
#3
(Mar-17-2019, 08:09 PM)ichabod801 Wrote: You use string methods on a string, not the str type.

while input("Hit Enter or type \"stop.\" ").lower() != "stop":
Since input returns a string, you can put it to the right of the input call, and it will apply to the return value of input.

Perfect! Thank you.
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  How to revert back to a previous line from user input Sharkenn64u 2 774 Dec-28-2024, 08:02 AM
Last Post: Pedroski55
  Destructor method adding in string chizzy101010 3 865 Sep-03-2024, 12:31 PM
Last Post: chizzy101010
  User input with while loops chizzy101010 2 4,506 Aug-25-2024, 06:00 PM
Last Post: chizzy101010
  comtypes: how to provinde a list of string to a COM method zalanthas 0 871 Jun-26-2024, 01:27 PM
Last Post: zalanthas
  Using string input for boolean tronic72 3 1,867 Nov-01-2023, 07:48 AM
Last Post: Gribouillis
  WHILE LOOP NOT RETURNING USER INPUT AFTER ZerroDivisionError! HELP! ayodele_martins1 7 2,422 Oct-01-2023, 07:36 PM
Last Post: ayodele_martins1
Sad How to split a String from Text Input into 40 char chunks? lastyle 7 2,545 Aug-01-2023, 09:36 AM
Last Post: Pedroski55
  restrict user input to numerical values MCL169 2 1,790 Apr-08-2023, 05:40 PM
Last Post: MCL169
  user input values into list of lists tauros73 3 1,923 Dec-29-2022, 05:54 PM
Last Post: deanhystad
Information How to take url in telegram bot user input and put it as an argument in a function? askfriends 0 2,261 Dec-25-2022, 03:00 PM
Last Post: askfriends

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020