jack0he的个人博客分享 http://blog.sciencenet.cn/u/jack0he


  • Delft University of Technology,其它,博士

    • 工程材料->机械工程->机械动力学

    扫一扫,分享此博客主页
你需要登录后才可以留言 登录 | 注册


xiwangxiaoxue1 2017-1-6 08:48
真是太感谢你了,非常感谢,我的邮箱是1803999647@qq.com!辛苦你了,多谢多谢!
查看全部
统计信息

已有 25257 人来访过

Python-Note-8-data structure-lists (continue) 2017-04-12
Using for loops with lists Example-1 animal= for i in animal:    print('The animal is '+i) --- outPut ...
(2387)次阅读|(0)个评论
Python-note-7-data structure-lists 2017-04-12
Data structures: 1, numbers 2, strings, 3, lists, 4, tuples, 5, dictionaries This part concerns the list data type. A list is a vector c ...
(2316)次阅读|(0)个评论
Python-Note-6-Global and local variables 2017-04-11
a global variable is always defined in the main function while a local one is defined in a  non-main function. A global variable can be used in ...
(1952)次阅读|(0)个评论
Python -Note-5-for-statements 2017-04-11
for: iterate a clause over  the items of any sequence. The sequence can be a set of numbers or strings. Example-1 words= for w in words: ...
(2082)次阅读|(0)个评论
Python-Note-4-Continue-statements 2017-04-11
Continue statements If the continue function is executed, go back to the start of the clause of the while loop. Example: while True:   ...
(2084)次阅读|(0)个评论
Python-Note-3-break-while-loop 2017-04-10
break statements Function: break while loop. If the break statement is executed, the while loop is terminated. Example Code in Pytho-Note-2 ...
(2140)次阅读|(0)个评论
Python-Note-2-While-loop-statements 2017-04-10
While loop while loop in Python while condition:    clause Example a=1 b=0 while a<5:    b=a+b   ...
(1918)次阅读|(0)个评论
Python-Note-1-If-else-statements 2017-04-10
1, If statements if condition:    xxxx Example: name='alibaba' if name=='alibaba':    print('My ...
(2097)次阅读|(0)个评论

查看更多

Archiver|手机版|科学网 ( 京ICP备07017567号-12 )

GMT+8, 2024-4-18 17:20

Powered by ScienceNet.cn

Copyright © 2007- 中国科学报社

返回顶部