2017-05-25 8 views
-2

私の教授は私たちのコードにソースコードヘッダーを含めることを望んでおり、どこに置くべきか正確にはわかりません。正確にどこにソースコードヘッダーを置くのですか?

#!/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 
########################################################### 
+2

は、それを入れてください。 – user2357112

+0

あなたはどこに著者を入れる? – Skycc

答えて

1

あなたはそれが最初の二行、シェバングとエンコーディングを宣言するラインの下にある置くことができる場所にだけ本当の「制限」。最初の行は、OSがファイルの実行方法を決定するのを助け、2番目の行は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 
関連する問題