2
1

More than 1 year has passed since last update.

Python3で関数を作成しました。

# 文字表示の練習
# Create 2023/7/16

#文字表示関数
def display(msg):
  print(msg)

str1 = "test"
#文字の連結
str1 += "46"
display(str1)

str2 = "山下美月"
display(str2)


2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1