質問編集履歴
1
コードを追加しました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -1 +1,45 @@
|
|
1
1
|
Pycharmで新規プロジェクトを作った時に出てくるウェルカムスクリプトの内容を変更する方法ってないですか?あれがテンプレートみたいになればすごく楽だと思うのですが。。。
|
2
|
+
|
3
|
+
|
4
|
+
|
5
|
+
以下のコードです。
|
6
|
+
|
7
|
+
|
8
|
+
|
9
|
+
```python
|
10
|
+
|
11
|
+
# This is a sample Python script.
|
12
|
+
|
13
|
+
|
14
|
+
|
15
|
+
# Press ⌃R to execute it or replace it with your code.
|
16
|
+
|
17
|
+
# Press Double ⇧ to search everywhere for classes, files, tool windows, actions, and settings.
|
18
|
+
|
19
|
+
|
20
|
+
|
21
|
+
|
22
|
+
|
23
|
+
def print_hi(name):
|
24
|
+
|
25
|
+
# Use a breakpoint in the code line below to debug your script.
|
26
|
+
|
27
|
+
print(f'Hi, {name}') # Press ⌘F8 to toggle the breakpoint.
|
28
|
+
|
29
|
+
|
30
|
+
|
31
|
+
|
32
|
+
|
33
|
+
# Press the green button in the gutter to run the script.
|
34
|
+
|
35
|
+
if __name__ == '__main__':
|
36
|
+
|
37
|
+
print_hi('PyCharm')
|
38
|
+
|
39
|
+
|
40
|
+
|
41
|
+
# See PyCharm help at https://www.jetbrains.com/help/pycharm/
|
42
|
+
|
43
|
+
|
44
|
+
|
45
|
+
```
|