Course Content
Learn Python from Scratch
Learn Python from Scratch
Concatenation
There are also some interesting operations available for strings in Python. One of them is concatenating strings, which means gluing one string to another. In Python, it can be easily done with + sign (ensure that both sides must be either both strings or numbers)
Also, you can easily calculate the number of each symbol met in your row. Use s.count(x)
to do it where s
- is a variable where string stores and x
- symbol you are interested in.
Also, you can replicate one string multiple times by just using multiplication. string * n
will produce n copies of string
.
For example,
# let's concatenate strings print("I " + "can " + "concatenate " + "strings") # let's count number of a in specific string s = "Linear discriminant analysis" print(s.count("a")) # replicate string multiple times print("test " * 5)
Task
Given two variables: name
and surname
with values "Alex"
and "Ferguson"
respectively.
- You need to create variable
fullname
and assign the result of the concatenation ofname
andsurname
. Do not forget about the blank space between name and surname (use +" "
)! Then print this fullname. - Count number of letter
'e'
isfullname
.
Thanks for your feedback!
Concatenation
There are also some interesting operations available for strings in Python. One of them is concatenating strings, which means gluing one string to another. In Python, it can be easily done with + sign (ensure that both sides must be either both strings or numbers)
Also, you can easily calculate the number of each symbol met in your row. Use s.count(x)
to do it where s
- is a variable where string stores and x
- symbol you are interested in.
Also, you can replicate one string multiple times by just using multiplication. string * n
will produce n copies of string
.
For example,
# let's concatenate strings print("I " + "can " + "concatenate " + "strings") # let's count number of a in specific string s = "Linear discriminant analysis" print(s.count("a")) # replicate string multiple times print("test " * 5)
Task
Given two variables: name
and surname
with values "Alex"
and "Ferguson"
respectively.
- You need to create variable
fullname
and assign the result of the concatenation ofname
andsurname
. Do not forget about the blank space between name and surname (use +" "
)! Then print this fullname. - Count number of letter
'e'
isfullname
.
Thanks for your feedback!
Concatenation
There are also some interesting operations available for strings in Python. One of them is concatenating strings, which means gluing one string to another. In Python, it can be easily done with + sign (ensure that both sides must be either both strings or numbers)
Also, you can easily calculate the number of each symbol met in your row. Use s.count(x)
to do it where s
- is a variable where string stores and x
- symbol you are interested in.
Also, you can replicate one string multiple times by just using multiplication. string * n
will produce n copies of string
.
For example,
# let's concatenate strings print("I " + "can " + "concatenate " + "strings") # let's count number of a in specific string s = "Linear discriminant analysis" print(s.count("a")) # replicate string multiple times print("test " * 5)
Task
Given two variables: name
and surname
with values "Alex"
and "Ferguson"
respectively.
- You need to create variable
fullname
and assign the result of the concatenation ofname
andsurname
. Do not forget about the blank space between name and surname (use +" "
)! Then print this fullname. - Count number of letter
'e'
isfullname
.
Thanks for your feedback!
There are also some interesting operations available for strings in Python. One of them is concatenating strings, which means gluing one string to another. In Python, it can be easily done with + sign (ensure that both sides must be either both strings or numbers)
Also, you can easily calculate the number of each symbol met in your row. Use s.count(x)
to do it where s
- is a variable where string stores and x
- symbol you are interested in.
Also, you can replicate one string multiple times by just using multiplication. string * n
will produce n copies of string
.
For example,
# let's concatenate strings print("I " + "can " + "concatenate " + "strings") # let's count number of a in specific string s = "Linear discriminant analysis" print(s.count("a")) # replicate string multiple times print("test " * 5)
Task
Given two variables: name
and surname
with values "Alex"
and "Ferguson"
respectively.
- You need to create variable
fullname
and assign the result of the concatenation ofname
andsurname
. Do not forget about the blank space between name and surname (use +" "
)! Then print this fullname. - Count number of letter
'e'
isfullname
.