코딩이 완료가 되면 제가 소정의 수고비를 드리겠습니다. ​ 감사합니다

코딩이 완료가 되면 제가 소정의 수고비를 드리겠습니다. ​ 감사합니다

QA

코딩이 완료가 되면 제가 소정의 수고비를 드리겠습니다. ​ 감사합니다

답변 2

본문

파이썬으로 작은 코딩 프로그램(100줄정도) 하나 짜주실 분을 구하고있습니다

필요한 내용은 강좌개설&삭제, 학생을 강좌개설에 등록&삭제 입니다

제가 대충 짜 놓은 틀입니다

 


import copy
import datetime 
from collections import OrderedDict
courseInfo=OrderedDict();
courseList=OrderedDict();
studentInfo = OrderedDict();
studentList = OrderedDict();
courseName="";
courseInformation="";
courseDate=0;
studentName = "";
studentEmail = "";
studentGender = 0;
menuOption = 0;
while True:
    print("Course Offering")
    print("--------------------")
    print("1:Create Course Offering")
    print("2:Delete Course Offering")
    print("3:Enrol student into Course Offering")
    print("4:De-enrol student from Course Offering")
    print("5:Exit Program\n")
    menuOption=int(input("Select a menu from 1 to 5:"))
#Create Course Offering
    if menuOption==1:

    
#Delete Course Offering
    elif menuOption==2:

    
#Enrol Student into Course Offering
    elif menuOption==3:
#De-enrol student from Course Offering
    elif menuOption==4:
#Exit Program 
    elif menuOption==5:
        print("Thank you for using our program!")
        from sys import exit
        exit()

 

코딩이 완료가 되면 제가 계좌로 소정의 수고비를 드리겠습니다.

감사합니다

이 질문에 댓글 쓰기 :

답변 2

https://sir.kr/main/request/

제작의뢰로 가시는게 맞을듯합니다.

70년대 코볼 스타일을 좋아하시는 게 아니면

개인 pc에 웹서버 설치하셔서

https://www.apachefriends.org/index.html

php-mysql로 작업하시는 게 편할 듯합니다.

 

답변을 작성하시기 전에 로그인 해주세요.
QA 내용 검색
질문등록
전체 2,772
© SIRSOFT
현재 페이지 제일 처음으로