第二章 :Python语言介绍与概览
4、python语言运行环境
python, pycharm的安装,就不再详述
5、第一个python程序
依旧是hello world!
6、集成开发工具pycharm
很好用的开发工具,强烈推荐
https://www.jetbrains.com/pycharm/download/
下载community即可
如何使用Pycharm,建议百度一下,很多视频教学
7、上机练习:体验python程序
输入以下代码并运行成功,注意对齐和缩进,字母大小写、空格,左右括号的配对
import datetime
dtstr = input('Enter the datetime:(20170228):')
dt = datetime.datetime.strptime(dtstr, "%Y%m%d")
another_dtstr = dtstr[:4] + '0101'
another_dt = datetime.datetime.strptime(another_dtstr, "%Y%m%d")
print(int((dt - another_dt).days)+1)
运行结果
Enter the datetime:(20170228):20190108
8
# 输入一行字符,分别统计出其中英文字母、空格、数字和其它字符的个数。
import string # 不import也行
s = input('input a string:')
letter = 0
space = 0
digit = 0
other = 0
for c in s:
if c.isalpha():
letter += 1
elif c.isspace():
space += 1
elif c.isdigit(