巩固学习python知识
准备开始学习Microsoft的python3教程,分了4大块,都过一遍,顺便当做学习英语了。
网址:https://learn.microsoft.com/en-us/shows/intro-to-python-development/?wt.mc_id=python-c9-niner
Feb.22 2023 until 12/44 formatting strings
keyboard shortcut for COMMENTS
VSC:
Ctrl + K + C (create a comment when your cursor is on it)
Ctrl + K + U (Undo a comment when your cursor is on it)
How to use F string:
first_name = 'Ilon'
last_name = 'Musk'
print(f'Hello, {first_name} {last_name}')
文章讲述了作者打算通过Microsoft的Python3教程来巩固和提升Python知识,这个教程分为四大块,作者计划同时提升英语技能。文中还提到了使用F-string进行字符串格式化的例子。
31万+

被折叠的 条评论
为什么被折叠?



