Press ESC to close

Or check our Popular Categories...
1 Min Read
0 18

Let’s create a variable or two and manipulate the strings with Pythons built in functions. #Importing the string module import string tutorial = ‘a crash course in python’ #capitalize the string tutorial.capitalize() #UPPERCASE the entire string import string string.upper(tutorial) #Concatenate…

Continue Reading