Changes

Jump to: navigation, search

OPS435 Python Lab 4

60 bytes removed, 12:45, 20 June 2017
INVESTIGATION 2: STRINGS
== PART 1 - Strings and Substrings ==
:This first part will explain basic concepts of using strings, printing strings, and manipulating sub-strings. 
'''Perform the Following Steps:'''
:#Launch the ipython3 shell<source>
course_code = 'OPS435'
course_number = 435
</source>:#Strings can contain any characters inside them, whether they are letters, numbers, or symbols. In our ipython3 shell the values inside each string variable can be seen just by typing the string variable name. However, when writing python scripts, these string variables should be placed inside '''print()''' functions in order to display on the screen.<br><br> Strings can also be concatenated(combined together) by using the '''+''' sign, just make sure string are only concatenating other strings(no lists, no numbers, no dictionaries, etc)<br><br>:#To demonstrate, issue the following:<source>
course_name
course_code
13,420
edits

Navigation menu