Java Games: Flashcards, matching, concentration, and word search.

Python Concatenation

AB
ConcatenationCombining multiple strings into one string.
String Concatenation (Python)Joining strings using the + operator or f-strings.
+ OperatorJoins strings together; all values must be strings.
Comma in print()Separates values and adds spaces without concatenation.
TypeErrorError caused by mixing strings and non-strings with +.
str()Converts a value into a string.
Commaconcatenation that is faster, automatically adds spaces, and automatically allows you to mix numerical and string variable types
print("Hello" + "there")Hellothere
print("Hello", "there")Hello there


CTE Teacher
NC

This activity was created by a Quia Web subscriber.
Learn more about Quia
Create your own activities