社区所有版块导航
Python
python开源   Django   Python   DjangoApp   pycharm  
DATA
docker   Elasticsearch  
aigc
aigc   chatgpt  
WEB开发
linux   MongoDB   Redis   DATABASE   NGINX   其他Web框架   web工具   zookeeper   tornado   NoSql   Bootstrap   js   peewee   Git   bottle   IE   MQ   Jquery  
机器学习
机器学习算法  
Python88.com
反馈   公告   社区推广  
产品
短视频  
印度
印度  
Py学习  »  Python

如何删除python中的空白

Desmond Nutes • 5 年前 • 1586 次点击  

我试着把这个提交到我的编程实验室,其他的都是正确的,但它希望我删除这个似乎不存在的空白。

num_males = int(input('Enter number of males:'))
num_females = int(input('Enter number of females:'))
total_students = num_males + num_females

percent_male = num_males * 100 / total_students
percent_female = num_females * 100 / total_students

print('Percent males: {:.0f}%' .format(percent_male)**X**,
       '\nPercent females: {:.0f}%' .format(percent_female))

here are the results I keep getting

Python社区是高质量的Python/Django开发社区
本文地址:http://www.python88.com/topic/56452
 
1586 次点击  
文章 [ 1 ]  |  最新文章 5 年前