为了简单起见,我将其分为三个部分:
与 c、cpp 和 java 等其他编程语言不同,您不需要显式声明变量的类型。此功能称为动态输入。
在 C 语言中,
int a = 6;
这里,变量被声明为整数。
但是在Python中,
a = 6
并且变量a可以重新声明为
a = "hello world"
?️注意:
变量名称区分大小写.,因此 a 和 A 被视为不同的变量。
a = 6 #valid _a = 6 #valid -a = 6 #invalid
a = 5 b = 6 a + b #11 print(_) #11
a, b, c = 5, 6, 7
global x def print(): return x #there will be no error
PI=3.14
print() 函数是一个内置的 Python 函数,用于将输出显示到控制台。
a=10000 print("hello world") #hello world print("hello", "world")#hello world print("hello world",a) #hello world 10000
打印函数中,有两个主要参数。
示例:
print("hello world") print("hi") # hello world # hi
print("hello", "world", sep="-", end = " ") print("hi") # hello-world hi
有关打印的完整文档,请单击此处
print("hello\nworld") #hello #world print("hello\tworld") #hello world print("happy\trecking")#happy\trecking
x = 5 y = 10 print(f"x: {x}, y: {y}") # x: 5, y: 10
Python 中的 input() 函数用于从控制台获取用户输入。
int a = 6;
?️注意:
默认情况下,input() 返回一个字符串,因此如果您需要将输入用作不同类型(例如 int、float),则需要对其进行转换。
a = 6
在即将发布的博客中,我们将深入研究 Python 运算符和条件语句。快乐学习???
以上是掌握 Python 基础知识日的详细内容。更多信息请关注PHP中文网其他相关文章!