感覺(jué)這一章對(duì)我來(lái)說(shuō)沒(méi)什么要學(xué)習(xí)的羡洛,就是講了一下Python的一些基礎(chǔ)語(yǔ)句越妈,有編程經(jīng)驗(yàn)的人肯定都知道怎么回事贫奠,但我還是把這一章的代碼貼在這里吧!就是一個(gè)簡(jiǎn)單小程序而已方面。。蜡秽。
Author:Alisita
This program says hello and ask your name
print("hello")
print('What is your 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?')
myAge = input()
print('You will be '+ str(int(myAge) + 1) + ' in a year.')