Skip to content
This repository has been archived by the owner on Dec 2, 2023. It is now read-only.

ENG2002Gp7Studio/ENG2002_Group7

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 

Repository files navigation

Basic Info

This repository is for ENG2002 Group 7's Application Development Assignment

Name Student ID Contribution
LIN Ju 21106434D Tasks
NI Rouheng 21102803D Financial Support in Dining
QIN Qijun 21101279D Structure Construction + Tasks

Program Naming Convention 程序命名规范

类别规范示例
Module 模块小写字母,单词之间用_分割ad_stats.py
Package 包小写字母,单词之间用_分割 
Class 类大驼峰法HerPhoneNumber
Global Variable 全局变量大写字母,单词之间用_分割COLOR_WRITE
Normal Variable 普通变量小写字母,单词之间用_分割 或 小驼峰法(开头小写)her_phone_number 或 herPhoneNumber
Instance Variable 实例变量以_开头,其他和普通变量一样_instance_var
Private Variable 私有实例变量以__开头(两个下划线),其他和普通变量一样__private_var
Specific Variable 专有变量以__开头,__结尾,一般为python的自有变量__doc__
Normal Function 普通函数小写字母,单词之间用_分割 (本次project不使用大写)get_name()
Private Function 私有函数以__开头(两个下划线),其他和普通变量一样__get_name()
File 文件名全小写,可使用下划线 

File Structure 文件结构

Assignment2

  • Assignment2_main.py (用于编写调试)
  • phonebook_package (包文件夹)
    • phonebook.py (模块Module)
  • user_management_system (包文件夹)
    • user_management_sys.py (模块Module)

Program Framework 程序框架

Program Structure

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages