diff options
Diffstat (limited to 'parsing_data')
-rw-r--r-- | parsing_data/quickref.tex | 20 | ||||
-rw-r--r-- | parsing_data/script.rst | 9 |
2 files changed, 17 insertions, 12 deletions
diff --git a/parsing_data/quickref.tex b/parsing_data/quickref.tex index a0212b3..5adaa84 100644 --- a/parsing_data/quickref.tex +++ b/parsing_data/quickref.tex @@ -1,11 +1,15 @@ -Creating a tuple:\\ -{\ex \lstinline| t = (1, "hello", 2.5)|} +Splitting a string on whitespace:\\ +{\ex \lstinline| str_var.split()|} -Accessing elements of tuples:\\ -{\ex \lstinline| t[index] Ex: t[2]|} +Splitting a string using a delimiter. Ex: ";" :\\ +{\ex \lstinline| str_var.split(";")|} -Accessing slices of tuples:\\ -{\ex \lstinline| t[start:stop:step]|} +Stripping the whitespace around a string:\\ +{\ex \lstinline| str_var.strip()|} + +Converting a string or float to int:\\ +{\ex \lstinline| int(var_name)|} + +Converting a string or int into float:\\ +{\ex \lstinline| float(var_name)|} -Swapping values:\\ -{\ex \lstinline| a, b = b, a|} diff --git a/parsing_data/script.rst b/parsing_data/script.rst index 5873132..2a3573c 100644 --- a/parsing_data/script.rst +++ b/parsing_data/script.rst @@ -1,10 +1,11 @@ .. Objectives .. ---------- -.. A - Students and teachers from Science and engineering backgrounds - B - - C - - D - +.. By the end of this tutorial you will be able to + +.. * Split a string using a delimiter +.. * remove the whitespace around the string +.. * convert the variables from one type to other .. Prerequisites .. ------------- |