<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
    <channel>
      <title>Second Brain</title>
      <link>https://xnocode.github.io/second_brain</link>
      <description>Last 10 notes on Second Brain</description>
      <generator>Quartz -- quartz.jzhao.xyz</generator>
      <item>
    <title>Things Want to Experience</title>
    <link>https://xnocode.github.io/second_brain/Things-Want-to-Experience</link>
    <guid>https://xnocode.github.io/second_brain/Things-Want-to-Experience</guid>
    <description><![CDATA[  Capture beautiful moments with a camera, even without me in the frame Go skydiving and feel like touching the sky Spend time watching the sky Watch the moon peacefully Count the stars at night Watch the sun set at the end of the day Climb hills and enjoy the view Cook whenever I feel sad Have pets ... ]]></description>
    <pubDate>Sat, 18 Apr 2026 00:00:00 GMT</pubDate>
  </item><item>
    <title>Python f-strings</title>
    <link>https://xnocode.github.io/second_brain/Python-f-strings</link>
    <guid>https://xnocode.github.io/second_brain/Python-f-strings</guid>
    <description><![CDATA[ name = &quot;xnocode&quot; age = 25 print(f&quot;My name is {name} and age is {age}&quot;) output My name is xnocode and age is 25 f-string syntax: f&quot;text {variable}&quot;. ]]></description>
    <pubDate>Thu, 16 Apr 2026 00:00:00 GMT</pubDate>
  </item><item>
    <title>Python formart()</title>
    <link>https://xnocode.github.io/second_brain/Python-formart()</link>
    <guid>https://xnocode.github.io/second_brain/Python-formart()</guid>
    <description><![CDATA[ name = &quot;xnocode&quot; age = 25 print(&quot;My name is {} and age is {}&quot;.format(name, age)) output My name is xnocode and age is 25 Note f-string is fastest and easiest format() is older method Use f-string in modern Python Index-Based Formatting Used to insert values into specific position... ]]></description>
    <pubDate>Thu, 16 Apr 2026 00:00:00 GMT</pubDate>
  </item><item>
    <title>Death</title>
    <link>https://xnocode.github.io/second_brain/Death</link>
    <guid>https://xnocode.github.io/second_brain/Death</guid>
    <description><![CDATA[  When my time comes, remember me in your prayers. And if I lose my memory before I leave this world, pray for me again. ]]></description>
    <pubDate>Wed, 15 Apr 2026 13:42:05 GMT</pubDate>
  </item><item>
    <title>Python String Formatting</title>
    <link>https://xnocode.github.io/second_brain/Python-String-Formatting</link>
    <guid>https://xnocode.github.io/second_brain/Python-String-Formatting</guid>
    <description><![CDATA[ String formatting is used to insert values into a string. ]]></description>
    <pubDate>Wed, 15 Apr 2026 00:00:00 GMT</pubDate>
  </item><item>
    <title>Python String Index</title>
    <link>https://xnocode.github.io/second_brain/Python-String-Index</link>
    <guid>https://xnocode.github.io/second_brain/Python-String-Index</guid>
    <description><![CDATA[ text = &quot;hello&quot; print(text[0]) print(text[1]) output h e Index: h e l l o 0 1 2 3 4 negative indexing text = &quot;hello&quot; print(text[-1]) print(text[-2]) output o l Negative Index: h e l l o -5 -4 -3 -2 -1. ]]></description>
    <pubDate>Wed, 15 Apr 2026 00:00:00 GMT</pubDate>
  </item><item>
    <title>Python String Length</title>
    <link>https://xnocode.github.io/second_brain/Python-String-Length</link>
    <guid>https://xnocode.github.io/second_brain/Python-String-Length</guid>
    <description><![CDATA[ text = &quot;hello&quot; print(len(text)) output 5 Note Strings are iterable (can loop through) Use for loop to access characters . ]]></description>
    <pubDate>Wed, 15 Apr 2026 00:00:00 GMT</pubDate>
  </item><item>
    <title>Python String Membership</title>
    <link>https://xnocode.github.io/second_brain/Python-String-Membership</link>
    <guid>https://xnocode.github.io/second_brain/Python-String-Membership</guid>
    <description><![CDATA[ text = &quot;hello&quot; print(&#039;h&#039; in text) print(&#039;x&#039; in text) output True False. ]]></description>
    <pubDate>Wed, 15 Apr 2026 00:00:00 GMT</pubDate>
  </item><item>
    <title>Python String Operations</title>
    <link>https://xnocode.github.io/second_brain/Python-String-Operations</link>
    <guid>https://xnocode.github.io/second_brain/Python-String-Operations</guid>
    <description><![CDATA[ a = &quot;hello&quot; b = &quot;world&quot; print(a + b) # concatenation print(a * 3) # repetition output helloworld hellohellohello. ]]></description>
    <pubDate>Wed, 15 Apr 2026 00:00:00 GMT</pubDate>
  </item><item>
    <title>Python String Slicing</title>
    <link>https://xnocode.github.io/second_brain/Python-String-Slicing</link>
    <guid>https://xnocode.github.io/second_brain/Python-String-Slicing</guid>
    <description><![CDATA[ text = &quot;hello&quot; print(text[0:3]) print(text[1:4]) print(text[0:]) output hel ell hello text[start idx:end idx] → end idx not included. ]]></description>
    <pubDate>Wed, 15 Apr 2026 00:00:00 GMT</pubDate>
  </item>
    </channel>
  </rss>