在Python中,可以使用print()函數來打印對象的值,例如:
x = 5
print(x)
如果要打印對象的屬性或方法,可以使用點運算符來訪問對象的屬性或方法,然后再打印出來,例如:
class Person:
def __init__(self, name, age):
self.name = name
self.age = age
def say_hello(self):
print("Hello, my name is", self.name)
person = Person("Alice", 30)
print(person.name)
person.say_hello()
在調試Python代碼時,可以使用內置的模塊pdb來進行調試,例如:
import pdb
def divide(x, y):
result = x / y
return result
pdb.set_trace()
print(divide(10, 2))
運行上面的代碼后,程序會在pdb.set_trace()處暫停,然后可以使用pdb模塊的命令來查看變量的值,繼續運行程序等操作來調試代碼。