熟练掌握Python编程知识
熟练掌握Python数据库API操作数据库
熟练掌握Python并发编程和网络编程的知识
能使用Python进行数据可视化分析
能使用Python编写爬虫实战项目
你将收获
熟练掌握Python编程知识
熟练掌握Python数据库API操作数据库
熟练掌握Python并发编程和网络编程的知识
能使用Python进行数据可视化分析
能使用Python编写爬虫实战项目
适用人群
课程介绍
请务必到https://edu.csdn.net/bundled/detail/49?utm_source=banner 下单购买课,方可添加图书寄送地址。
本页面,仅为观看视频页面,如需邮寄图书,请务必到上述链接下单付款。
《21天通关Python》我能收获哪些?
1本实体图书教材,京东畅销书《疯狂Python讲义》含邮寄
10场Python视频精讲,作者李刚亲自带队带你通关Python
4大模块,涉及数据分析、网络爬虫、等Python热点领域
专属微信社群,随时答疑,爱上Python!
同学笔记
2020-02-25 22:36:26
a=float(input("请输入一个数:"))
b=float(input("请输入第二个数:"))
print("它们的和:",a+b)
print("它们的积:",a*b)
print("它们的差:",a-b)
print("它们的商:",a/b)
print("整除:",a//b)
c=int(input("请输入一个数:"))
print("十六进制:",hex(c))
print("八进制:",oct(c))
print("二进制:",bin(c))
#第二种办法,字符串格式化
print("十六进制:%x" % c)
print("八进制:%o" % c)
#字符串格式化不支持二进制
#print("二进制:%b"% c)
2019-08-16 14:38:26
>>> st=[3, 4, 40, 34]
>>> st.remove(40)
>>> print st
[3, 4, 34]
>>> st.remove(2)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ValueError: list.remove(x): x not in list
>>> st.remove[2]
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: 'builtin_function_or_method' object has no attribute '__getitem__'
>>>
没有更多了
课程讨论
花中君子宇
来源:实操:简单计算器和进制转换
weixin_41346825
来源:字符串入门
痴油
来源:深入循环与嵌套循环
痴油
来源:Python行业分析与课程简介
冰激凌太烫~~
来源:局部函数
weixin_44126644
来源:深入循环与嵌套循环
flyduck10
qq_42495980
蓬莱宫
Kevin. Zheng