从 Python到Tensorflow 学习之路(一)
----
最近毕业设计题目是研究对抗样本,要用tensorflow来搭建神经网络,因此python必不可少,这个不是一个传统的Python学习教程只是把学习...print ('hello python')
print ("hello python")
可以在字符串前输入“`实现多行效果
print('''hello python
python2...])
print my_set
set可以看作是数学上无须且无重复元素的集合,因此两个set可以做数学上的交和补操作
set_1 = set([1,2,3])
set_2 = set([2,3,4])...)
L = [2,3,4]
print calculate_sum(*L)
T = (4,5,6)
print calculate_sum(*T)
Python中关键字参数允许传入0个或者任意个含参数名的参数...func(1,2,c=3)
func(1,2,3,'a','b')
func(1,2,3,'a','b',x=99)
我们下期见!