Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Display List for User Input
#1
Hello,

I'm trying to display a list of databases to a user and have them make a selection based on number. Once the selection is made, I'd like to construct a connection string from their input. So far, I have basic code to have the user connect but I'm unable to take their database input and construct and append it to the connection string.

import cx_Oracle
import getpass


# Database List
db_list = ['TEST11C', 'TEST12C']
x = 0

print ('\nChoose a database: ')
for i in db_list:
    x += 1
    print(x, i)

while True:
    try:
        # Input username and password
        uname = input('\nEnter username: ')
        pw = getpass.getpass(prompt='Enter password: ')
        conn_str = u'%s/%s@<DATABASE>' % (uname, pw)
        conn = cx_Oracle.connect(conn_str)
        c = conn.cursor()
        break
    except cx_Oracle.DatabaseError as e:
        error, = e.args
        print("\nInvalid username/password.  Please try again.")
Any idea how I can display a list, have the user select a number from the list and take the corresponding database name and add it to the connection string?

Thanks!
Reply


Messages In This Thread
Display List for User Input - by anelliaf - Mar-21-2018, 02:00 PM
RE: Display List for User Input - by anelliaf - Mar-22-2018, 03:26 PM
RE: Display List for User Input - by buran - Mar-27-2018, 01:51 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  difference between forms of input a list to function akbarza 6 1,033 Feb-21-2024, 08:02 PM
Last Post: bterwijn
  WHILE LOOP NOT RETURNING USER INPUT AFTER ZerroDivisionError! HELP! ayodele_martins1 7 1,061 Oct-01-2023, 07:36 PM
Last Post: ayodele_martins1
  How to display <IPython.core.display.HTML object>? pythopen 3 45,963 May-06-2023, 08:14 AM
Last Post: pramod08728
  restrict user input to numerical values MCL169 2 916 Apr-08-2023, 05:40 PM
Last Post: MCL169
  user input values into list of lists tauros73 3 1,073 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 1,091 Dec-25-2022, 03:00 PM
Last Post: askfriends
Question Take user input and split files using 7z in python askfriends 2 1,100 Dec-11-2022, 07:39 PM
Last Post: snippsat
Sad how to validate user input from database johnconar 3 1,922 Sep-11-2022, 12:36 PM
Last Post: ndc85430
  functional LEDs in an array or list? // RPi user Doczu 5 1,604 Aug-23-2022, 05:37 PM
Last Post: Yoriz
  How to split the input taken from user into a single character? mHosseinDS86 3 1,182 Aug-17-2022, 12:43 PM
Last Post: Pedroski55

Forum Jump:

User Panel Messages

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