0

我正在创建一个程序来从谷歌日历 API 获取我的工作时间表并计算我的工资。当我不想要它时,有一条线会不断分裂。

我稍微研究了一下并增加了首选行长,因为我在美化设置中读到了一些关于它获得行长配置的内容,但这不起作用,文本仍然换行。

print("\n")
id_key = int(input("Please enter the number of the work calendar:"))
pay_date = int(
    input("Please enter the pay date you want to calculate:"))
print("\n")

对比

print("\n")
id_key = int(input("Please enter the number of the work calendar:"))
pay_date = int(input("Please enter the pay date you want to calculate:"))
print("\n")
4

1 回答 1

1

包设置 -> Atom Beautify -> Python。将“最大线长”设置为您喜欢的任何值。

于 2019-07-30T08:19:11.440 回答