2022-02-21

WARNING: This article may be obsolete
This post was published in 2022-02-21. Obviously, expired content is less useful to users if it has already pasted its expiration date.
This article is categorized as "Garbage" . It should NEVER be appeared in your search engine's results.

ResNet

🔗 [【转载】ResNet论文笔记((对比vgg16网络)) - 简书] https://www.jianshu.com/p/3d886e8a0eb9

python 参数传递tuple

注意这一段程序:

def receive(a):
    print(type(a))


receive(())
receive((0))
receive((()))
receive((0,))
receive(((0,)))

运行结果:

<class 'tuple'>
<class 'int'>
<class 'tuple'>
<class 'tuple'>
<class 'tuple'>


 Last Modified in 2022-03-02 

Leave a Comment Anonymous comment is allowed / 允许匿名评论