文件名称:Python 编程快速上手第一个程序hello.py
文件大小:358B
文件格式:PY
更新时间:2023-12-14 14:47:52
python
Python 编程快速上手第一个程序 # This program says hello and asks for my name print('Hello world') print('What is your name') # ask their name myName = input() print('It is good to meet you,'+ myName) print('The length of your name is :') print(len(myName)) print('What is your age?') # ask for their age myAge =