SVHT

  • //在Python中是什么意思?

    一、//是什么? 在Python中,//是一种除法运算符。不同于常见的除法运算符/,//代表的是整除。 a = 10 b = 3 print(a//b) # 输出 3 print(…

    编程 2024-10-03