Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

myPYmenu

ans=True
while ans:
    print ("""
    1.Add a Student
    2.Delete a Student
    3.Look Up Student Record
    4.Exit/Quit
    """)
    ans=raw_input("What would you like to do? ") 
    if ans=="1": 
      print("
 Student Added") 
    elif ans=="2":
      print("
 Student Deleted") 
    elif ans=="3":
      print("
 Student Record Found") 
    elif ans=="4":
      print("
 Goodbye") 
    elif ans !="":
      print("
 Not Valid Choice Try again")
Comment

PREVIOUS NEXT
Code Example
Python :: Preprocessing of transfer learning inception v3 
Python :: how to rub softwares using python 
Python :: the most effective search algorithm in python 
Python :: python list example 
Python :: iterate over k values and plot the inertia values for each k 
Python :: python project structure 
Python :: specifying random columns in numpy 
Python :: como colocar uma variavel no print python 
Python :: Python Code for Checking if a number is an Odd number 
Python :: sanic ip whitelist 
Python :: change python version jupyter notebook 
Python :: appropriate graph for dataset visualization 
Python :: for con condicion 
Python :: subsetting a column and giving it a value using numpy 
Python :: 1043 uri solution 
Python :: Count occurrence of each term in dataframe except for NaN 
Python :: quit block in python 
Python :: python tkinter button multiple commands 
Python :: fichier python pour brython 
Python :: how to import discord in python rewrite vscode 
Python :: tf.io path copy 
Python :: moving element to the start ofa list python 
Python :: why static kwyword not in python 
Python :: python get user of pid 
Python :: extrapolate python 
Python :: file.write must be string python 
Python :: Compute the mean of this RDD’s elements. 
Python :: Prints out the schema in the tree format 
Python :: django rest framework encrypt passwors 
Python :: por que usar np.log 
ADD CONTENT
Topic
Content
Source link
Name
9+9 =