我是python的新手。我正在尝试在python shell中使用正则表达式创建一个列表。 在列表中,我有3个值topic-1,topic-2,topic-3。我正在创建一个具有topic的使用者对象,并且topic应该包含3个值[topic1,topic2,topic3]。因此,只要我想指出主题1,主题2,主题3中的任何一个。因此应该从正确的主题中获取信息。 我正在下面的代码,但它给出了一个问题。
class MyViewController: UIViewController, UITableViewDataSource {
override func viewDidLoad() {
super.viewDidLoad()
tableview.datasource = self
}
func numberOfSections(in tableView: UITableView) -> Int {
return 1
}
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return 4
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
// create UITableViewCell
}
}
在这里,我可以创建使用者对象,但不能以正确的值(例如[topic-1,topic-2,topic-3])进行创建 因为在下一步中我无法接收到该消息。 语法问题是什么??
答案 0 :(得分:0)
在您的语法中我找不到任何明显错误的地方。您确定名称空间中有这些主题吗?尝试使用pulsar的命令行工具,例如:
pulsar-admin租户列表
pulsar-admin命名空间列表<>
pulsar-admin主题列表租户/集群/命名空间
有关更多选项,请参见此处:https://pulsar.apache.org/docs/latest/reference/CliTools/