pycache:
pycache は、Python スクリプトのコンパイル済みバージョンを保存するために Python によって作成されるディレクトリです。これらのファイルには .pyc 拡張子が付いており、Python スクリプトの実行時に自動的に生成されます。
*プログラミング ルール: *
1) 既知から未知まで
2) アウトプット全体について考えない
3) 次のステップのことだけを考えてください
4) 必要に応じて変数を導入します
5) プログラムをよく観察してください
5 つの連続する数字を出力するプログラムを作成してください。
count = 1 if count<=5: print(1, end=' ') count=count+1 #count = 2 if count<=5: print(1, end=' ') count=count+1 # count = 3 if count<=5: print(1, end=' ') count=count+1 # count = 4 if count<=5: print(1, end=' ') count=count+1 # count = 5 if count<=5: print(1, end=' ') count=count+1 # count = 6
if ステートメント。それぞれ、値 1 とそれに続くスペース (end=' ') if count
1 1 1 1 1
代替実装:
count = 1 while count <= 5: print(1, end=' ') count += 1
このロジックをより簡潔な方法で繰り返すことが目的の場合は、ループを使用できます
1 1 1 1 1
複数の if の短縮形が while で呼び出されます。
print() 関数は、2 つのオプションのパラメーター sep と end を使用して、出力の書式設定を制御します。
sep(区切り文字):
print() に渡される複数の引数の間に挿入される文字列を指定します。
print("Hello", "World", sep=", ")
Hello, World
print("Kuhan",'guru','varatha',sep='-')
Kuhan-guru-varatha
end(終了文字):
出力の最後に追加される文字列を指定します
print("Hello", end="!") print("World")
Hello!World
sep と end の組み合わせ:
print("Python", "is", "fun", sep="-", end="!")
Python-is-fun!
引数の種類:
位置引数:
関数定義で指定されたとおりの正確な順序で渡される引数。
def add(no1,no2): print(no1+no2) add(10,20)
これは関数 add を呼び出し、10 を no1 として渡し、20 を no2 として渡します。
30
可変長引数:
可変数の引数を渡すことができます。
日時モジュール Python から日付のみを取得する方法:
from datetime import date current_date=(date.today()) print("Current Date:",current_date)
Current Date: 2024-11-25
以上が一日のループの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。