Methode: Verwenden des Operators +
+ Listenverständnis
In dieser Aufgabe fügen wir einfach eine Zeichenfolge an der hinteren oder vorderen Position hinzu, indem wir verwenden +-Operator, und Listenverständnis wird verwendet, um über alle Elemente zu iterieren.
< td class = "code"> # Python3-Code zur Demonstration der Funktionsweise
# Suffix/Präfix zu Zeilen in hinzufügen list
# Mit dem Comprehension list + operator & quot; + & Quot;
# Initialisierungsliste
< Codeklasse ="plain"> test_list =
[
`a`
,
`b`
,
` c`
,
`d`
]
# print list
print
(
"The original list:"
+
str
(test_list))
# Initialisierung von append_str
append_str
= `gfg`
# Suffix / Präfix zu Zeilen in der Liste hinzufügen
pre_res
=
[append_str
+
sub
for
sub
in
test_list]
suf_res
=
[sub
+
append_str
für
sub
in
test_list]
# Ergebnis drucken
print
(
"list after prefix additi on:"
+
str
(pre_res))
print
(
"list after suffix addition:"
+
str
(suf_res))
Ausgabe: b>
Die ursprüngliche Liste: [`a`, `b`,` c`, `d`] Liste nach Präfixzusatz: [`gfga` , `gfgb`, `gfgc`, `gfgd`] list afterix addition: [`agfg`, `bgfg`,` cgfg`,` dgfg`]
Shop
Learn programming in R: courses
$
Best Python online courses for 2022
$
Best laptop for Fortnite
$
Best laptop for Excel
$
Best laptop for Solidworks
$
Best laptop for Roblox
$
Best computer for crypto mining
$
Best laptop for Sims 4
$
Latest questions
NUMPYNUMPY
psycopg2: insert multiple rows with one query
12 answers
NUMPYNUMPY
How to convert Nonetype to int or string?
12 answers
NUMPYNUMPY
How to specify multiple return types using type-hints
12 answers
NUMPYNUMPY
Javascript Error: IPython is not defined in JupyterLab
12 answers
Wiki
Python OpenCV | cv2.putText () method
numpy.arctan2 () in Python
Python | os.path.realpath () method
Python OpenCV | cv2.circle () method
Python OpenCV cv2.cvtColor () method
Python - Move item to the end of the list
time.perf_counter () function in Python
Check if one list is a subset of another in Python
Python os.path.join () method