Skip Navigation
InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)WW
woop_woop @lemmy.world
Posts 0
Comments 117
Promised Land
  • were descended from people who voluntarily left the area generations ago

    There have been forced deportations from that area for millenia. They're talked about in the Bible and the Romans did it.

  • UPDATE: The slab is flat... ish
  • The downside to that is the epoxy would only be surface level. You'd want to fill any cracks/checks entirely, and pouring it into the hole or flooding the whole slab would be the best way to ensure that

  • Confused about multiplying floating-point & integer values
  • Eh, degrees can be overrated. I don't have one and it hasn't hindered me at all. Ultimately, it depends what kind of work you want to get into and your drive to self learn, how quick you can pick things up, and adaptability. You got this.

  • Confused about multiplying floating-point & integer values
  • the signature for the input function (that's what it's called instead of command) is

    def input(__prompt: Any = ...) -> str
    

    which means it's always going to return a string.

    So it starts off as a string, then becomes whatever is typed in

    there's no real way for something to do that automatically without a much more robust setup.

    this snippet proves that

    test_int = input('enter integer:')
    print(type(test_int))
    test_float = input('enter float:')
    print(type(test_float))
    test_str = input('enter string:')
    print(type(test_str))
    
    >> <class 'str'>
    >> <class 'str'>
    >> <class 'str'>
    

    it is the responsibility of your program to validate and do whatever you want with the result, and part of that can include casting it to a different type.