Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 79c1da6

Browse filesBrowse files
author
root
committed
chapter 2:use Paramiko for ssh
1 parent 0cb72d2 commit 79c1da6
Copy full SHA for 79c1da6

File tree

16 files changed

+1002
-0
lines changed
Filter options

16 files changed

+1002
-0
lines changed

‎作者给的源代码/BHP-Code.zip

Copy file name to clipboard
11.7 MB
Binary file not shown.
+15Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
def sum(number_one, number_two):
2+
number_one_int = convert_integer(number_one)
3+
number_two_int = convert_integer(number_two)
4+
5+
result = number_one_int + number_two_int
6+
return result
7+
8+
def convert_integer(number_string):
9+
converted_integer = int(number_string)
10+
return converted_integer
11+
12+
answer = sum("1", "5")
13+
print answer
14+
15+

‎我手敲的代码(中文注释)/chapter2/.idea/.name

Copy file name to clipboardExpand all lines: 我手敲的代码(中文注释)/chapter2/.idea/.name
+1Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎我手敲的代码(中文注释)/chapter2/.idea/chapter2.iml

Copy file name to clipboardExpand all lines: 我手敲的代码(中文注释)/chapter2/.idea/chapter2.iml
+12Lines changed: 12 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎我手敲的代码(中文注释)/chapter2/.idea/encodings.xml

Copy file name to clipboardExpand all lines: 我手敲的代码(中文注释)/chapter2/.idea/encodings.xml
+6Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎我手敲的代码(中文注释)/chapter2/.idea/misc.xml

Copy file name to clipboardExpand all lines: 我手敲的代码(中文注释)/chapter2/.idea/misc.xml
+14Lines changed: 14 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎我手敲的代码(中文注释)/chapter2/.idea/modules.xml

Copy file name to clipboardExpand all lines: 我手敲的代码(中文注释)/chapter2/.idea/modules.xml
+8Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎我手敲的代码(中文注释)/chapter2/.idea/workspace.xml

Copy file name to clipboardExpand all lines: 我手敲的代码(中文注释)/chapter2/.idea/workspace.xml
+182Lines changed: 182 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.