SaaS公司People.ai概况、产品功能、融资历史及主要竞品介绍
People.AI是一家SaaS公司,专注于帮助企业收集、分析和利用客户数据。People.ai的产品功能包括客户关系管理(CRM)、营销自动化(MA)和业务智能(BI)。
People.ai成立于2016年,总部位于美国旧金山,目前在北京、伦敦、波士顿和芝加哥设有分支机构。People.ai目前共获得了5轮融资,融资额达到4.35亿美元,投资方包括高盛集团、红杉资本、光环新网、基金会资本和北极光创投。
People.ai的主要竞品包括客户关系管理系统(CRM)、营销自动化系统(MA)和业务智能(BI)等。
!"); } else { alert("提交成功!"); window.location.HRef = "../index.html"; } } function Home() { window.location.href = "../index.html"; } function GetQueryString(name) { var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)"); var r = window.location.search.substr(1).match(reg); if (r != null) return unescape(r[2]); return null; }
。
请完成以下编程题:
编写一个程序,读取键盘输入的某一行文字,分别统计出其中英文字母、空格、数字和其它字符的个数。
程序分析:利用while语句,条件为输入的字符不为'\n'.
counten = 0 countsp = 0 countnum = 0 countot = 0
while True: try: s = input('请输入一行字符:\n') except EOFError: break for i in s: if i >= 'a' and i <= 'z' or i >= 'A' and i <= 'Z': counten += 1 elif i == ' ': countsp += 1 elif i >= '0' and i <= '9': countnum += 1 else: countot += 1 print('英文字母个数:{},空格个数:{},数字个数:{},其它字符个数:{}'.format(counten, countsp, countnum, countot))