我的教授希望我们的代码包含一个源代码标题,而且我不知道确切的位置。
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Created on Mon May 22 21:31:16 2017
@author: noraasrar
"""
# Code starts here
源代码标题如下所示:
###########################################################
# Computer Project #5
#
# Algorithm
# prompt for an integer
# input an integer
# loop while not end-of-data
# call function to count number of digits in integer
# output the number of digits
# prompt for an integer
# input an integer
# display closing message
###########################################################
答案 0 :(得分:1)
唯一真正的“限制”,你可以把它放在前两行之下,shebang和声明编码的行。第一行帮助您的操作系统确定如何执行文件,第二行帮助您确定第二行tells the Python executable what file encoding to use when it reads the script。
由于“源代码标题”只是一个注释块,这可能会起作用:
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Created on Mon May 22 21:31:16 2017
@author: noraasrar
"""
###########################################################
# Computer Project #5
#
# Algorithm
# prompt for an integer
# input an integer
# loop while not end-of-data
# call function to count number of digits in integer
# output the number of digits
# prompt for an integer
# input an integer
# display closing message
###########################################################
# Code starts here