Difference between revisions of "String Manipulation - Python"
(Created page with "=Why String Manipulation= All programming languages allow you to manipulate strings, it is an essential skill and function. You could use it to find a value within a string, u...") |
(→String Manipulation in Python) |
||
Line 4: | Line 4: | ||
=String Manipulation in Python= | =String Manipulation in Python= | ||
+ | ===Print a String=== | ||
<syntaxhighlight lang=python> | <syntaxhighlight lang=python> | ||
str = 'Hello World!' | str = 'Hello World!' | ||
print (str) # Prints complete string | print (str) # Prints complete string | ||
+ | </syntaxhighlight> | ||
+ | ===Get a Character from a String=== | ||
+ | <syntaxhighlight lang=python> | ||
+ | str = 'Hello World!' | ||
print (str[0]) # Prints first character of the string, or any character at the element provided so str[3] will get the 4th character | print (str[0]) # Prints first character of the string, or any character at the element provided so str[3] will get the 4th character | ||
+ | </syntaxhighlight> | ||
+ | ===Get a Selection of the String from the Middle=== | ||
+ | <syntaxhighlight lang=python> | ||
+ | str = 'Hello World!' | ||
print (str[2:5]) # Prints characters starting from 3rd to 5th, this allows you to select a part of a string | print (str[2:5]) # Prints characters starting from 3rd to 5th, this allows you to select a part of a string | ||
+ | </syntaxhighlight> | ||
− | print (str[2:]) # Prints string starting from 3rd character | + | ===Get a Selection of the String from the Start or End=== |
+ | <syntaxhighlight lang=python> | ||
+ | str = 'Hello World!' | ||
+ | print (str[2:]) # Prints string starting from 3rd character until the end | ||
+ | print (str[:2]) # Prints string starting from the start and upto the 3rd character | ||
+ | </syntaxhighlight> | ||
+ | ===Repeating String=== | ||
+ | <syntaxhighlight lang=python> | ||
+ | str = 'Hello World!' | ||
print (str * 2) # Prints string two times | print (str * 2) # Prints string two times | ||
+ | </syntaxhighlight> | ||
+ | ===String Concatenation=== | ||
+ | <syntaxhighlight lang=python> | ||
+ | str = 'Hello World!' | ||
print (str + "TEST“) # Prints concatenated string | print (str + "TEST“) # Prints concatenated string | ||
</syntaxhighlight> | </syntaxhighlight> |
Revision as of 09:34, 20 June 2018
Contents
Why String Manipulation
All programming languages allow you to manipulate strings, it is an essential skill and function. You could use it to find a value within a string, use it to select only a part of the string and so on.
String Manipulation in Python
Print a String
str = 'Hello World!'
print (str) # Prints complete string
Get a Character from a String
str = 'Hello World!'
print (str[0]) # Prints first character of the string, or any character at the element provided so str[3] will get the 4th character
Get a Selection of the String from the Middle
str = 'Hello World!'
print (str[2:5]) # Prints characters starting from 3rd to 5th, this allows you to select a part of a string
Get a Selection of the String from the Start or End
str = 'Hello World!'
print (str[2:]) # Prints string starting from 3rd character until the end
print (str[:2]) # Prints string starting from the start and upto the 3rd character
Repeating String
str = 'Hello World!'
print (str * 2) # Prints string two times
String Concatenation
str = 'Hello World!'
print (str + "TEST“) # Prints concatenated string