Python语言介绍
Python是一种广泛使用的通用高级编程语言。它由 Guido van Rossum 于 1991 年创建,并由Python软件基金会进一步开发。它的设计强调代码的可读性,其语法允许程序员用更少的代码行来表达他们的概念。
Python是一种编程语言,可让您快速工作并更有效地集成系统。
有两个主要的Python版本: Python 2 和Python 3 。两者完全不同。
从Python编程开始:
1) 寻找口译员:
在开始Python编程之前,我们需要一个解释器来解释和运行我们的程序。有一些在线解释器,如https://ide.geeksforgeeks.org/、http://ideone.com/或 http://codepad.org/,可用于在不安装解释器的情况下运行Python程序。
Windows :有许多解释器可以免费运行Python脚本,例如 IDLE(集成开发环境),它与从Python下载的Python软件捆绑在一起。
Linux : Python预装了流行的 Linux 发行版,例如 Ubuntu 和 Fedora。要检查您正在运行的Python版本,请在终端模拟器中键入“Python”。解释器应该启动并打印版本号。
macOS :通常, Python 2.7 与 macOS 捆绑在一起。您必须从http:// Python .org/手动安装Python 3。
2)编写我们的第一个程序:
启动解释器后,只需键入以下代码。
# Script Begins
print("GeeksQuiz")
# Scripts Ends
输出:
GeeksQuiz
让我们逐行分析脚本。
第 1 行:[ #Script Begins]在Python中,注释以 # 开头。该语句被解释器忽略并用作我们代码的文档。
第 2 行: [ print(“GeeksQuiz”)]要在控制台上打印某些内容,使用 print()函数。此函数还在我们的消息打印后添加一个换行符(与 C 不同)。请注意,在Python 2 中,“print”不是函数而是关键字,因此可以不带括号使用。但是,在Python 3 中,它是一个函数,必须用括号调用。
第 3 行:[ # Script Ends]这只是第 1 行中的另一个注释。
如果您发现任何不正确的地方,或者如果您想分享有关上述主题的更多信息,请发表评论。
相关课程
Python Programming Foundation -Self Paced Course
New to the programming world, don’t know where to start? Start with beginner-friendly Python Programming Foundation -Self Paced Course designed for absolute beginners who wish to kickstart and build their foundations in Python programming language. Learn Python basics, Variables & Data types, Operators etc and learn how to solve coding problems efficiently in Python. Don’t wait, sign up now and kickstart your Python journey today.
DS Using Python Programming – Self Paced Course
If you’re curious to upgrade your Python skills, you’ve come to the right platform! In this DS Using Python Programming – Self Paced Course, designed for Python enthusiasts where you’ll be guided by the leading industry experts who will explain in-depth, and efficient methods to implement data structures such as heaps, stacks, and linked lists etc. So, what are you waiting for? Advance your Python skills today.