Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
Administrator
/
lesson7_2
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
c7219661
authored
Dec 03, 2022
by
BellCodeEditor
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
save project
parent
e9587b95
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
10 deletions
diy2.py
t.py
diy2.py
View file @
c7219661
message
=
"诺依,周末一起去看动漫展吧!"
text
=
length
=
len
(
message
)
i
=
0
while
i
<
length
:
a
=
message
[
i
]
print
(
a
)
i
=
i
+
1
# 请使用索引的知识,取出message所有元素(不用遍历的方式)
t.py
View file @
c7219661
...
@@ -5,6 +5,7 @@ key = "abcdefgh使用编程实现ä½ç§»æ›¿æ¢åŠ å¯†ï¼Œåˆ¶ä½œå¯†ç æœºå…³çœŸæ˜¯å¤
...
@@ -5,6 +5,7 @@ key = "abcdefgh使用编程实现ä½ç§»æ›¿æ¢åŠ å¯†ï¼Œåˆ¶ä½œå¯†ç æœºå…³çœŸæ˜¯å¤
# 要加密语句
# 要加密语句
message
=
"诺依,周末一起去看动漫展吧!"
message
=
"诺依,周末一起去看动漫展吧!"
a
=
""
a
=
""
b
=
"decefe"
# 请使用私钥key,对message进行加密
# 请使用私钥key,对message进行加密
for
i
in
message
:
for
i
in
message
:
str1
=
i
str1
=
i
...
@@ -12,4 +13,8 @@ for i in message:
...
@@ -12,4 +13,8 @@ for i in message:
str3
=
random
.
choice
(
key
)
str3
=
random
.
choice
(
key
)
b
=
str1
+
str2
+
str3
b
=
str1
+
str2
+
str3
a
=
a
+
b
a
=
a
+
b
print
(
a
)
print
(
a
)
\ No newline at end of file
c
=
list
(
a
)
c
.
insert
(
5
,
b
)
d
=
" "
.
join
(
c
)
print
(
d
)
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment