<samp id="e4iaa"><tbody id="e4iaa"></tbody></samp>
<ul id="e4iaa"></ul>
<blockquote id="e4iaa"><tfoot id="e4iaa"></tfoot></blockquote>
    • <samp id="e4iaa"><tbody id="e4iaa"></tbody></samp>
      <ul id="e4iaa"></ul>
      <samp id="e4iaa"><tbody id="e4iaa"></tbody></samp><ul id="e4iaa"></ul>
      <ul id="e4iaa"></ul>
      <th id="e4iaa"><menu id="e4iaa"></menu></th>

      代做DS2500、代寫(xiě)Python設(shè)計(jì)程序

      時(shí)間:2024-04-07  來(lái)源:  作者: 我要糾錯(cuò)



      Spring 2024
      Python Grading Guidelines

      In DS2500, you’ll have a project, labs, homeworks, and Python Practice Problems (PPPs) that all contribute to your grade. For some of this work, your grade will be entirely based on correctness, and for others your coding/visualization style will play a large role.

      Correctness: Labs and PPPs

      Labs and PPPs are auto-graded, and you receive full credit if the unit tests in the autograder pass. Make sure you verify the output of the autograder! For these assignments, you will be graded only on the correctness of your code and not on its style.

      Correctness + Style: Homeworks and Projects

      For projects and homeworks, your code will be reviewed by a DS2500 TA, and your grade will be based in large part on your coding style and visualizations. 

      Our highest priority is that your code be incredibly clear and easy to work with -- just as the expectation would be in a job or co-op.

      In particular, we’ll grade your code based on its readability, modularity, and reusability. We expect your visualizations, including presentation slides, to be easy to follow. You will receive a score of excellent, satisfactory, in progress, or not met on all of these criteria. 

      Below, you’ll find a grading rubric that we’ll use for every homework and project. Additionally, we’ve included the DS2500 style guide for specific items around spacing, variable names, etc (it’s very similar to the DS2000 style guide!)

      Coding + Visualization Grading Rubric
      DS2500 Style Guide
      Spacing
      Variable and Function Names
      Strings
      Comments


      Coding + Visualization Grading Rubric

      Category    Excellent     Good     In Progress     Not Met 
      Readability    Variable and function names are clear and concise. Code is consistently formatted and makes good use of horizontal and vertical space. No lines exceed 80 characters. All information printed out is readable and uses the appropriate data type and/or rounding.    Minor issues with variable naming, formatting, printing, or spacing.

          At least one significant issue with readability.

          Multiple major issues with readability; code is extremely hard to follow.


      Modularity    Code is well-organized and split into functions, including a main function to initiate execution. Functions have no more than 30 lines each and are self-contained. Code is not repeated. Control structures (loops, conditionals) are used appropriately within functions.     Minor issues with messy or long functions, or with repeated code.    At least one significant issue with modularity such as too few functions or disorganized code.    Functions not used besides main.


      Reusability    Code is consistently well-documented and every function has a descriptive block comment. All written code is used in execution. Implementations are efficient.    Minor issues with comments, extra/missing code, or inefficiencies.    At least one significant issue with reusability.    Code could not be reused in another program.
      Visualizations    Visualizations are clear, easy to follow, and make good use of labels, legends, titles, sizes,  and colors.    Minor issues with missing tags or confusing/counterintuitive colors.    Visualizations chosen are inappropriate for the data, or incorrect based on requirements of the assignment..    Visualizations not present.


      DS2500 Style Guide
      Spacing
      ●Group related code together, and use vertical space to separate chunks of code
      ●Limit your code to 80 columns or less.
      ●Put white space around operators, and after commas.

      Do this (vertical space):
      # here is a comment describing the next three lines of code,
      # which are all related to each other
      Code line 1
      Code line 2
      Code line 3

      # here is a comment describing the next two lines, which are
      # separate from the lines above
      Code line 4
      Code line 5

      Do this (horizontal space):
      x = y + 5

      if x == y:

      result = func(18, 19, "hello")

      spam = long_function_name(var_one, var_two,
                                var_three, var_four)

      a = 1 + 2 + 3 + 4
          + 5 + 6 + 7

      Not this:
      x=y+5

      x=y + 5

      x = y+5

      if x==y:

      Variable and Function Names
      ●Variable and function names must be short and descriptive. 
      ●Use lowercase letters, and use underscores to separate words. Do not use camel case.
      ●Constants, whose values never change once initialized, should be uppercase
      ●Constants can be used/reference in main, but NOT in other functions. To ensure reusability, a function should get all its data via parameters and not assume any constants exist in the file. Constants are defined at the very top of your program, below your comments but above all your functions. All other variables must be local -- i.e., defined within a function.

      Do this:
      age = 44
      birth_year = 1978
      first_name = "Laney"
      def compute_result()
      FILENAME = "file.txt"

      Not this:
      a = 44
      x = 1978
      variableName = "Laney"
      def FunctionOne()
      PI = 3.1415
      PI += 4
      Strings
      ●You can use single or double quotes to enclose strings. It doesn’t matter which one, as long as you’re consistent within a program.
      ●It’s useful to use f-strings for printing variables, especially when you need special formatting (but f-strings are not required for ds2500).
      ●But, don’t use the % or + operators for printing; they’re old-fashioned!
      ●Strings are immutable, so we can’t directly modify a string once it’s been created. A string method will generally return a modified copy. 

      Do this:
      print("Hello", name)

      print(f"Hello {name}")


      Not this:
      print("Hello %s" %name)

      print("Hello" + name)

      Comments
      ●Before you write any code, put a block comment at the top of every program with your name, the course, the assignment, the date, and the name of the file.
      ●Comments explaining your code should appear throughout your program. 
      ●Comments go above Python statements, not beside them. 
      ●Put a space between the “#” and the comment.
      ●Function comments should be a docstring just under the function signature. Apart from this, your functions don’t generally need inline comments unless you’re doing something very complex that requires an explanation.

      Do this:
      # comment describing my code
      python statement

      # space after crosshatch


      Not this:
      python statement # comment describing my code

      #no space after crosshatch

      Functions should be concise; it’s best to keep them under 30 lines of code. Functions should also accept a limited number of parameters; five of them at the absolute max. Function comments should include the parameters and return type, and they should describe the what of a function as well. You can use bullet points to describe these items, or summarize them.

      Do this:
      def func(param):
      """
      Parameters: a non-negative number
      Returns: a float
      Does: computes and returns the square root
            of the given number
      """
      Function code
      Function code


      def func(param):
      """
      Given a non-negative integer, computes
      and returns its square root.
      """
      Function code
      Function code


      Not this:
      def func(param):
      """
      Parameters: a non-negative number
      Returns: a float
      Does: computes and returns the square root
            of the given number
      """
      # inline comment
      Function code
      # inline comment
      Function code

      請(qǐng)加QQ:99515681  郵箱:99515681@qq.com   WX:codinghelp

















       

      標(biāo)簽:

      掃一掃在手機(jī)打開(kāi)當(dāng)前頁(yè)
    • 上一篇:CS202代做、代寫(xiě)Java/Python程序語(yǔ)言
    • 下一篇:代寫(xiě)CSCI 2122、C++編程設(shè)計(jì)代做
    • 無(wú)相關(guān)信息
      昆明生活資訊

      昆明圖文信息
      蝴蝶泉(4A)-大理旅游
      蝴蝶泉(4A)-大理旅游
      油炸竹蟲(chóng)
      油炸竹蟲(chóng)
      酸筍煮魚(yú)(雞)
      酸筍煮魚(yú)(雞)
      竹筒飯
      竹筒飯
      香茅草烤魚(yú)
      香茅草烤魚(yú)
      檸檬烤魚(yú)
      檸檬烤魚(yú)
      昆明西山國(guó)家級(jí)風(fēng)景名勝區(qū)
      昆明西山國(guó)家級(jí)風(fēng)景名勝區(qū)
      昆明旅游索道攻略
      昆明旅游索道攻略
    • 幣安app官網(wǎng)下載 幣安app官網(wǎng)下載

      關(guān)于我們 | 打賞支持 | 廣告服務(wù) | 聯(lián)系我們 | 網(wǎng)站地圖 | 免責(zé)聲明 | 幫助中心 | 友情鏈接 |

      Copyright © 2023 kmw.cc Inc. All Rights Reserved. 昆明網(wǎng) 版權(quán)所有
      ICP備06013414號(hào)-3 公安備 42010502001045

      主站蜘蛛池模板: 亚洲熟妇无码一区二区三区 | 免费无码黄动漫在线观看| 国产aⅴ无码专区亚洲av麻豆 | 西西人体444www大胆无码视频| 无码国产精品一区二区免费| 人妻精品无码一区二区三区| 国产aⅴ激情无码久久| 亚洲AV人无码综合在线观看| 成人麻豆日韩在无码视频| 国产做无码视频在线观看浪潮| 最新亚洲春色Av无码专区| 亚洲av无码成人黄网站在线观看 | 中文字幕久久精品无码| 亚洲AV成人片无码网站| 小SAO货水好多真紧H无码视频| 亚洲成a人片在线观看天堂无码 | 日韩人妻无码精品久久免费一| 色综合热无码热国产| 黄色成人网站免费无码av| 精品无码一区二区三区在线| 亚洲av中文无码乱人伦在线播放| 人妻丰满?V无码久久不卡| 亚洲国产精品无码久久九九| 丰满少妇人妻无码| 国产亚洲精品无码成人| 久久久久成人精品无码中文字幕| 亚洲欧洲自拍拍偷午夜色无码| 成年无码av片完整版| 无码国产色欲XXXX视频| 无码专区永久免费AV网站| 亚洲不卡无码av中文字幕| 国产乱子伦精品无码码专区 | 国产成人亚洲综合无码| 无码人妻一区二区三区精品视频| 亚洲男人第一无码aⅴ网站| 亚洲中文无码a∨在线观看| 人妻少妇无码视频在线| 亚洲国产成人无码av在线播放| 亚洲av无码不卡私人影院| 亚洲VA中文字幕无码一二三区 | 男人av无码天堂|