Python 编程快速上手第一个程序hello.py
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 =
用户评论