Print() function will print like \xe3\x81\x82~

Asked 2 years ago, Updated 2 years ago, 37 views

I'm writing a book for beginners that shows the zodiac signs when you get older.

year_str=input('Please enter the year of your birth in four digits:')
year=int(year_str)
number_of_eto=(year+8)%12
print('Your zodiac sign is',number_of_eto,').')


if you write
Please enter the year of your birth in 4 digits:
and enter the year

('\xe3\x81\x82\xae3\xaa\x81\xaa\x81\x81\x9f\xe3\x81\xae5\xb9\xb2\xe6\x94\xaf\xe3\xe3\x81\xaf',2,'\xe7\x95\xaaa3\x81\xa7\xa7\xe3\x8\xe3\xe3\xa7\x8\x8\x8\x8\x8\

It says

If it's a book, your zodiac sign should say ~, but is there something wrong with the way you wrote it?❓

python python3

2022-09-30 11:06

1 Answers

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.