【“笨办法”学Python】9.打印,打印,打印——“““和

【“笨办法”学Python】9.打印,打印,打印——“““和,第1张

【“笨办法”学Python】9.打印,打印,打印——“““和

9.打印,打印,打印——"""和n


文章目录
  • 前言
  • 一、Atom文本编辑器
  • 二、运行Python程序
  • 总结


前言

  编程中的大部分错误都是简单的拼写错误、录入错误或者没把别的一些简单东西弄对。


一、Atom文本编辑器

# Here's some new strange stuff, remember type it exactly.

days = "Mon Tue Wed Thu Fri Sat Sun"
months = "JabnFebnMarnAprnMaynJunnJulnAug"

print("Here are the days:", days)
print("Here are the months:", months)

print("""
There's something going on here.
With the three double-quotes.
We'll be able to type as much as we like.
Even 4 lines if we want, or 5, or 6.
""" )


二、运行Python程序

  在Window上键入Python就可以看到结果。

python ex9.py


总结

  以上内容介绍了Python中的字符串和文本的用法,有关Python、数据科学、人工智能等文章后续会不定期发布,请大家多多关注,一键三连哟(●’◡’●)。

欢迎分享,转载请注明来源:内存溢出

原文地址: https://outofmemory.cn/zaji/5651698.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-16
下一篇 2022-12-16

发表评论

登录后才能评论

评论列表(0条)

保存