age=input('what\'s your age ? ').strip() print(int(age)) print(int(age)) ValueError: invalid literal for int() with base 10: '33& C:/Users/pc/AppData/Local/Programs/Python/Python310/python.exe "c:/Users/pc/Desktop/a, b, c = 1, 2, 3.py"' السلام عليكم يا أخي بالله عندي مشكلة عندما أحول تظهر هذه الرسالة str الى int
you can first convert the input number into a float using float() method, parse the decimal digits, and convert them again into an integer, as shown below.
example : number= input("What is your weight:") kilos=int(float(number)) print ("The weight of the person is:" + str(kilos)) # Output What is your weight:55.5 The weight of the person is:55
💚
الأخطاء البرمجية هي نتيجة لطبيعة العوامل البشرية في عملية البرمجة. تنشأ الأخطاء من سوء الفهم المتبادل أو السهو الذي يقع فيه الفريق المبرمج
نعم
هل هناك فرق بين try catch و try except ؟
age=input('what\'s your age ? ').strip()
print(int(age)) print(int(age))
ValueError: invalid literal for int() with base 10: '33& C:/Users/pc/AppData/Local/Programs/Python/Python310/python.exe "c:/Users/pc/Desktop/a, b, c = 1, 2, 3.py"' السلام عليكم يا أخي بالله عندي مشكلة عندما أحول تظهر هذه الرسالة str الى int
you can first convert the input number into a float using float() method, parse the decimal digits, and convert them again into an integer, as shown below.
example :
number= input("What is your weight:")
kilos=int(float(number))
print ("The weight of the person is:" + str(kilos))
# Output
What is your weight:55.5
The weight of the person is:55
@@قناةمسترماجدالتعليمية شكرا وبارك الله فيك يا أستاذ