📜  如何编写python代码示例

📅  最后修改于: 2022-03-11 14:45:15.371000             🧑  作者: Mango

代码示例2
#if its your first time start with this
print("hello world")
#now learn about input
input("whats your name")
#if statements and variables
run = True
if run == True:
  print("hi")
#now lets combine our knowledge
print("Whats your name")
name = input("")
print("Hello, " + name)